-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "project_name",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "npm run build && node server.js",
"test": "./node_modules/.bin/mocha --recursive -t 5000 --exit",
"dev": "npm run build && nodemon server.js && npm run open",
"dev-admin": "npm run dev --prefix app/admin",
"serve-client": "npm run serve --prefix app/client",
"install-admin": "cd app/admin && npm install && echo \"installed admin\"",
"install-client": "cd app/client && npm install && echo \"installed pfe\"",
"build": "echo \"pretending to build\"",
"open": "start http://localhost:3000"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"helmet": "^3.9.0",
"lodash": "^4.17.5",
"mongoose": "^5.0.12",
"neo4j-driver": "^1.5.3",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"swagger-jsdoc": "^1.9.7",
"swagger-ui-express": "^3.0.6"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"mocha": "^5.0.5",
"mockery": "^2.1.0",
"node-mocks-http": "^1.5.8",
"nodemon": "^1.14.7"
}
}