-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.01 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
42
43
44
45
{
"name": "backend",
"version": "1.0.0",
"description": "Empathic Accuracy backend for Sandbox",
"main": "server.js",
"scripts": {
"test": "jest --runInBand",
"dev": "nodemon",
"lint": "eslint \"./**/*.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"archiver": "^3.0.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"express-fileupload": "^1.1.1-alpha.1",
"fs-extra": "^7.0.1",
"sanitize-filename": "^1.6.1",
"unused-filename": "^1.0.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^24.8.0",
"mock": "^0.1.1",
"nodemon": "^1.18.6",
"supertest": "^3.3.0"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:jest/recommended"
],
"plugins": [
"jest"
]
}
}