-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 KB
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
{
"name": "listem-api",
"version": "0.0.0",
"main": "bin/www",
"private": true,
"scripts": {
"start": "npm run start:dev",
"start:dev": "nodemon",
"start:prod": "node .",
"db:create": "sequelize db:create",
"db:migrate": "sequelize db:migrate",
"lint": "npm run lint:script && npm run lint:format",
"lint:script": "eslint bin/** .",
"lint:format": "prettier --check .",
"test": "jest --runInBand",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage"
},
"dependencies": {
"bcrypt": "^5.0.0",
"browser-sync": "^2.26.12",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.0",
"http-errors": "^1.8.0",
"json-schema-ref-parser-sync": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"password-validator": "^5.1.0",
"pg": "^8.3.2",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.4",
"sequelize-cli": "^6.2.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.4.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"supertest": "^4.0.2",
"uuid": "^8.3.0"
},
"engines": {
"node": "^12.0.0"
}
}