forked from winverse/express-rest-api-sample
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "express-rest-api-sample",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "winverse",
"repository": {
"type": "git",
"url": "https://github.com/winverse/express-rest-api-sample"
},
"scripts": {
"dev": " NODE_PATH=./src nodemon ./src/server.js",
"db:migrate": "NODE_PATH=./src ./scripts/db-migrate.sh",
"db:sync": "NODE_PATH=./src node ./scripts/db-sync.js",
"test": "./scripts/test.sh"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.7",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sequelize-cli": "^6.2.0"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"multer": "^1.4.2",
"nanoid": "^3.1.21",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0",
"supertest": "^6.1.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0"
}
}