-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
46
47
48
49
50
51
52
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon -r dotenv/config index.js",
"test": "ava --verbose --serial --node-arguments=\"-r dotenv/config\"",
"test:coverage": "nyc ava",
"reset": "npm run reset:db && npm run reset:firebase",
"reset:db": "node -r dotenv/config ./bin/resetDB",
"reset:firebase": "node -r dotenv/config ./bin/resetFirebase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UrturnScience/Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UrturnScience/Backend/issues"
},
"homepage": "https://github.com/UrturnScience/Backend#readme",
"dependencies": {
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cron": "^1.8.2",
"expo-server-sdk": "^3.5.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.0",
"firebase-admin": "^8.10.0",
"mongoose": "^5.9.2",
"swagger-ui-express": "^4.1.4",
"ws": "^7.2.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"ava": "^3.7.0",
"dotenv": "^8.2.0",
"firebase": "^7.11.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"supertest": "^4.0.2"
},
"ava": {
"files": [
"!test/util"
]
}
}