-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
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
{
"name": "cpg-code-editor-server",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./bin/www",
"start": "export NODE_ENV=production && node ./bin/www",
"lint": "eslint ./ ./bin/**",
"test": "jest && codecov",
"prepare": "husky install"
},
"dependencies": {
"codecov": "^3.8.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"mongodb": "^4.0.0",
"morgan": "~1.9.1",
"rollbar": "^2.24.0",
"socket.io": "^4.1.2",
"string-random": "^0.1.3"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.2"
}
}