-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "Podracing",
"version": "1.0.0",
"engines": {
"node": "8.x"
},
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"body-parser": "^1.18.2",
"bcryptjs": "^2.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.12.3",
"morgan": "^1.9.0",
"superagent": "^3.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.8.0",
"mocha": "^4.0.1"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run mocha --s",
"mocha": "mocha --recursive",
"test:dev": "nodemon --exec 'npm run mocha'",
"test:unit": "nodemon --exec 'npm run mocha -- ./test/unit'",
"test:e2e": "nodemon --exec 'npm run mocha -- ./test/e2e'",
"start": "node server.js",
"start:dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RealTeamCtrl8/Podracing"
},
"author": "Ctrl+8",
"license": "ISC"
}