-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.59 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
46
47
48
49
50
51
52
{
"name": "bruinbot-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "npx nodemon server.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --fix --ext .js",
"test:bots": "mocha test/routes/bots.js --exit",
"test:items": "mocha test/routes/items.js --timeout 5000 --exit",
"test:pathfinding": "mocha test/util/pathfinding.js --timeout 5000 --exit",
"test": "export NODE_ENV=test && npm run test:bots && npm run test:items && npm run test:pathfinding",
"test:win": "set NODE_ENV=test && npm run test:bots && npm run test:items && npm run test:pathfinding",
"test:coverage": "nyc --reporter=text npm run test",
"test:coverage:win": "nyc --reporter=text npm run test:win"
},
"keywords": [],
"author": "Jack Zhang",
"license": "ISC",
"description": "",
"dependencies": {
"aws-sdk": "^2.799.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.4.1",
"migrate-mongoose": "^4.0.0",
"mongoose": "^5.8.3",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"node-forge": "^0.10.0",
"ws": "^7.4.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.1",
"mocha-suppress-logs": "^0.2.0",
"nodemon": "^2.0.2",
"nyc": "^15.1.0",
"prettier": "^2.1.2"
},
"engines": {
"node": ">=10.0.0"
}
}