-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "patient_form",
"version": "1.0.0",
"main": "index.js",
"repository": {},
"license": "MIT",
"dependencies": {
"ava": "^0.17.0",
"body-parser": "^1.16.0",
"compression": "^1.6.2",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"express": "^4.14.0",
"express-validator": "^3.1.2",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"mongoose": "^4.7.9",
"morgan": "^1.7.0",
"multer": "^1.3.0",
"node-sass-middleware": "^0.11.0",
"pug": "^2.0.0-beta9",
"supertest": "^3.0.0"
},
"devDependencies": {
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.11.0"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon --debug=32836 --nolazy --harmony app.js",
"test": "NODE_ENV=test MONGO_DB_URI=mongodb://localhost:27017/patient_directory_test ava"
}
}