-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "warehouse",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "env-cmd -f ./src/config/docker.env node ./src/index.js",
"mongodb": "/home/lom/mongodb/bin/mongod --dbpath=/home/lom/Documents/nodejspr/Warehouse/mongo_data",
"dev": "env-cmd -f ./src/config/dev.env nodemon ./src/index.js -e js,pug,css",
"test": "env-cmd -f ./src/config/test.env mocha --recursive \"./src/test/*.js\"",
"test-docker": "env-cmd -f ./src/config/test-docker.env mocha --recursive \"./src/test/*.js\"",
"test-with-coverage": "nyc --check-coverage npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.5",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"express-boom": "^3.0.0",
"mongoose": "^5.6.13",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pug": "^2.0.4"
},
"devDependencies": {
"chai": "^4.2.0",
"env-cmd": "^10.0.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}