-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "wishlist-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "docker-compose exec app ./node_modules/.bin/mocha --timeout 8000 'test/**/*.js'",
"start": "node src/index.js",
"lint:all": "node_modules/.bin/eslint --config .eslintrc.js 'src/**/*.js'",
"lint:fix": "node_modules/.bin/eslint --config .eslintrc.js 'src/**/*.js' --fix",
"migrate": "docker-compose exec app ./node_modules/.bin/sequelize db:migrate",
"migrate:undo": "docker-compose exec app ./node_modules/.bin/sequelize db:migrate:undo"
},
"author": "@dudaduarte",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"bcryptjs": "2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "8.5.1",
"mocha": "^7.1.2",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.9"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"eslint": "^6.2.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.4",
"sequelize-cli": "^5.5.1"
}
}