-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "msg-tree",
"version": "1.0.0",
"description": "An API for messaging application",
"main": "index.js",
"repository": "https://github.com/emp-daisy/msg-tree.git",
"author": "Jessica M <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"start:dev": "nodemon --exec 'babel-node ./src/index.js'",
"test": "jest --detectOpenHandles",
"lint": "eslint ./src --ext .js --fix",
"build": "rm -rf dist/* && babel -d ./dist ./src -s"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.4.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.7.1",
"nodemon": "^1.18.10"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.2.1",
"lodash": "^4.17.11",
"mongoose": "^5.4.22",
"validator": "^10.11.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"coverageReporters": [
"json",
"html",
"lcov",
"text"
],
"testPathIgnorePatterns": [
"<rootDir>/client/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"__test__/"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/",
"!__test__/"
],
"globalTeardown": "<rootDir>/src/__tests__/global/cleanup.js"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js ts json",
"ignore": [
"*.test.ts",
"*.test.js"
],
"delay": "3",
"execMap": {
"ts": "ts-node"
}
}
}