-
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) · 761 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 761 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": "trabalho-api",
"version": "1.0.0",
"description": "trabalho",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "set NODE_ENV=production && nodemon ./src/server.js",
"dev": "set NODE_ENV=development && nodemon ./src/server.js"
},
"author": "Igor",
"license": "ISC",
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.37",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.1.0",
"sequelize-cli": "^6.6.2"
}
}