-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 801 Bytes
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
{
"name": "mileto-backend",
"version": "0.4.3",
"description": "Backend do projeto de TCC, Mileto",
"main": "src/server.js",
"scripts": {
"build": "npx webpack",
"postinstall": "npm run build",
"dev": "sequelize db:create && sequelize db:migrate && npx webpack -w",
"start": "sequelize db:create && sequelize db:migrate && node dist/bundle.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.15",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"nodemon-webpack-plugin": "^4.7.1",
"sequelize": "^6.12.0-beta.1",
"sequelize-cli": "^6.3.0"
}
}