-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "be-trello-api",
"version": "0.0.0",
"private": true,
"main": "./bin/www.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"start:dev": "node ./dist_dev/main.js",
"build:dev": "webpack --config webpack.dev.js --mode development"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-validator": "^6.15.0",
"morgan": "~1.9.1",
"mysql2": "^3.1.2",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.28.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.18.13",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^8.2.5",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"sequelize-cli": "^6.6.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}