-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 3.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "portal-ua-editor",
"private": true,
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.js --exec babel-node",
"clean": "rm -rf build && mkdir build",
"build": "cross-env NODE_ENV=production npm run clean && babel -d ./build ./src -s --copy-files",
"start": "node server.js",
"eslint": "eslint src",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:graphql": "jest src/__tests__/graphql/index.test.js --detectOpenHandles --watch",
"test:watch": "jest --watch",
"docs": "jsdoc2md src/parser/*.js > docs/parser-functions.md"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint && npm test"
}
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"roots": [
"<rootDir>/src"
],
"setupFiles": [
"<rootDir>/jest.init.js"
],
"testMatch": [
"**/*.test.js"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@okgrow/graphql-scalars": "^0.4.5",
"apollo-server-express": "^2.14.2",
"clean-deep": "^3.0.2",
"cookie-parser": "^1.4.3",
"cors": "2.8.4",
"eslint-plugin-jest": "^22.3.0",
"express": "4.16.3",
"express-jwt": "6.0.0",
"express-session": "^1.16.2",
"graphql": "^0.13.2",
"graphql-type-json": "^0.2.1",
"http-status": "^1.2.0",
"jsonwebtoken": "8.2.0",
"lodash.merge": "^4.6.2",
"mongodb": "^3.1.1",
"mongoose": "^5.7.5",
"mongoose-delete": "^0.5.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"validator": "^10.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.8.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.1.0",
"cross-env": "^5.2.0",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jsdoc-to-markdown": "^5.0.3",
"nodemon": "^1.11.0",
"supertest": "^3.1.0"
}
}