forked from mgonto/angello-angularjs-in-action
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 814 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 814 Bytes
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
{
"name": "garage-backend",
"version": "0.1.0",
"description": "Garage Backend",
"main": "server.js",
"dependencies": {
"body-parser": "^1.6.5",
"cors": "^2.4.1",
"dotenv": "^0.4.0",
"express": "^4.8.5",
"express-jwt": "^0.3.2",
"jsonwebtoken": "^1.1.0",
"kerberos": "^0.0.18",
"lodash": "^2.4.1",
"mongoose": "^4.4.0",
"mongoose-timestamp": "^0.5.0",
"mongoose-validator": "^1.2.4",
"morgan": "^1.2.3"
},
"devDependencies": {
"mocha": "^1.21.4",
"supertest": "^0.13.0",
"istanbul": "^0.3.0",
"better-assert": "^1.0.1"
},
"scripts": {
"test": "NODE_PATH=. NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover node_modules/.bin/_mocha",
"start": "node server.js"
},
"author": "Martin Gontovnikas",
"license": "MIT"
}