-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "strvproject",
"version": "0.0.1",
"author": "diegobarrera",
"descripction": "STRV address book project",
"license": "MIT",
"engines": {
"node": "^10.13.0",
"npm": "^6.4.0"
},
"scripts": {
"start": "node ./src/bin/www",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon ./src/bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha ./tests/**/*.js --exit",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./tests/**/*.js --exit",
"db:migrate": "./node_modules/.bin/sequelize db:migrate --env production",
"mount": "docker-compose up -d",
"umount": "docker-compose down",
"lint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"app-root-path": "^2.1.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"firebase": "^5.5.9",
"jsonwebtoken": "^8.4.0",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"nyc": "^14.1.0",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.4.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.7",
"sinon": "^7.1.1",
"standard": "^12.0.1",
"supertest": "^3.3.0"
}
}