-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.59 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
80
81
82
83
{
"name": "sports-rental-server",
"author": "p.baranau",
"license": "MIT",
"version": "0.0.0",
"main": "src",
"private": true,
"scripts": {
"start": "npm run prod",
"dev": "concurrently -k \"npm run run-app-dev\" \"wait-on http://0.0.0.0:9001 && npm run start-server-dev \"",
"prod": "concurrently \"npm run build-app-prod \" \"sleep 10 && npm run start-server-prod \"",
"run-app-dev": "cd client && npm start",
"start-server-dev": "nodemon -i \"*.test.js\" .",
"build-app-prod": "cd client && npm i && npm run build",
"start-server-prod": "cross-env NODE_ENV=production nodemon -i \"*.test.js\" -r dotenv-safe/config .",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src",
"docs": "apidoc -i src -o docs && apidoc-markdown -p docs -o DOCS.md",
"postdocs": "opn docs/index.html"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"devDependencies": {
"apidoc": "^0.17.6",
"apidoc-markdown": "^0.2.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"cross-env": "^6.0.3",
"dotenv-safe": "^8.1.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest-cli": "^24.9.0",
"mongodb-memory-server": "^5.2.8",
"nock": "^11.6.0",
"nodemon": "^1.19.4",
"opn-cli": "^5.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.1",
"body-parser": "^1.18.2",
"bodymen": "^1.0.3",
"compression": "^1.7.1",
"concurrently": "^5.0.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-force-ssl": "^0.3.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^5.7.7",
"mongoose-create-unique": "^0.4.4",
"mongoose-keywords": "^0.4.0",
"morgan": "^1.7.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"querymen": "^2.1.3",
"rand-token": "^0.4.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"wait-on": "^3.3.0"
},
"engines": {
"node": "10.15.x"
}
}