-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 973 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
35
36
37
38
{
"name": "restful-booker",
"version": "1.0.0",
"private": true,
"scripts": {
"start-dev": "SEED=false node ./bin/www",
"start": "cross-env SEED=true node ./bin/www",
"test": "mocha -R spec tests/spec.js",
"build_docs": "apidoc -i ./routes/ -o public/apidoc/"
},
"dependencies": {
"api-doc": "^4.0.3",
"apidoc": "^0.23.0",
"apollo-server-express": "^2.15.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"dateformat": "^3.0.3",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"form-urlencoded": "^4.1.3",
"graphql": "^15.3.0",
"js2xmlparser": "^4.0.1",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"nedb": "^1.8.0",
"pug": "^2.0.4",
"validate.js": "^0.13.1"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^7.1.2",
"supertest": "^4.0.2",
"xml2js": "^0.4.23"
}
}