-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "pokemon",
"description": "Pokemon API Challenge",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "DEBUG=* NODE_ENV=production node -r esm bin/www.js",
"serve": "DEBUG=* NODE_ENV=development npx webpack -w",
"build": "npx webpack",
"sqlz": "node -r esm node_modules/.bin/sequelize"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "~4.16.1",
"express-validator": "^6.8.0",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"sequelize-paginate": "^1.1.6",
"swagger-jsdoc": "^6.0.0-rc.5",
"swagger-jsdoc-webpack-plugin": "^1.0.0",
"swagger-ui-dist": "^3.38.0",
"swagger-ui-express": "^4.1.5",
"tedious": "^9.2.1"
},
"devDependencies": {
"copy-webpack-plugin": "^7.0.0",
"nodemon-webpack-plugin": "^4.3.2",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
}
}