-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 974 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "nyc mocha --recursive",
"serve": "node src/main.js"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"moment-timezone": "^0.5.28",
"morgan": "^1.10.0",
"node-pre-gyp": "^0.14.0",
"pg": "^8.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^6.3.5"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
}
}