-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ws-nodejs-re",
"version": "1.0.0",
"description": "work sample for nodejs developers",
"main": "src/app.js",
"private": true,
"scripts": {
"apidoc": "$(npm bin)/apidoc -f \".*\\.js$\" -i src/ -o doc/",
"dev": "DEBUG=ws-nodejs-re:* $(npm bin)/nodemon --exec babel-node -L src/app.js",
"lint": "$(npm bin)/eslint src/ config/ test/",
"format": "$(npm bin)/eslint --fix src/ config/ test/",
"start": "node src/app.js",
"test": "NODE_ENV=test PORT=3333 $(npm bin)/mocha --require @babel/register --exit $(find test -name '*spec.js')",
"integration-test": "export PORT=3333 NODE_ENV=test && sequelize db:migrate:undo:all && sequelize db:migrate && nyc --require @babel/register mocha ./test/integration/integration.js --timeout 20000 --exit",
"cover": "NODE_ENV=test PORT=3333 $(npm bin)/nyc --reporter=html $(npm bin)/mocha --require @babel/register --exit $(find test -name '*spec.js')"
},
"author": "Digication",
"license": "PRIVATE",
"dependencies": {
"body-parser": "~1.19.0",
"cookie-parser": "~1.4.4",
"debug": "~4.1.1",
"express": "~4.17.1",
"express-error-handler": "^1.1.0",
"is-uuid": "^1.0.2",
"joi": "^14.3.1 ",
"morgan": "~1.9.1",
"path": "^0.12.7",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rewire": "^4.0.1",
"sequelize": "^5.21.5",
"sinon": "^9.0.0",
"sqlite3": "^4.1.0",
"uuid": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"apidoc": "^0.17.7",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"sequelize-fixtures": "^1.1.1"
},
"apidoc": {
"name": "roster-editor API Docs",
"version": "1.0.0",
"description": "Documentation for the API endpoints provided by roster-editor backend",
"title": "roster-editor API Docs",
"url": "https://roster-editor.digication.com"
},
"engines": {
"node": ">=8.3.0"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "500"
}
}