-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "backend-engine",
"version": "1.0.0",
"description": "backend-engine for dbSimsPDX game",
"main": "server.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --recursive",
"test:watch": "npm run test -- -w",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizutombo/backend-engine.git"
},
"author": "Tom Shultz <thomas.shultz52@gmail.com> (https://github.com/mizutombo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mizutombo/backend-engine/issues"
},
"homepage": "https://github.com/mizutombo/backend-engine#readme",
"engines": {
"node": "6.8.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.16.1",
"express": "^4.14.1",
"jsonwebtoken-promisified": "^1.0.3",
"mongoose": "^4.8.2",
"morgan": "^1.8.1"
}
}