-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "dash-api",
"version": "1.0.0",
"description": "Dash Backend",
"main": "app.js",
"scripts": {
"test": "mocha",
"start": "node ./app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://gitlab.doc.ic.ac.uk/csh4017/dash-api.git"
},
"author": "csh4017",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^2.5.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.1",
"node-mocks-http": "^1.7.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.11.0",
"pg-hstore": "^2.3.2",
"react-helmet": "^5.2.1",
"sequelize": "^5.8.6",
"supertest": "^4.0.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2"
}
}