-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 Bytes
/
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
{
"name": "deepinsales-api-v2",
"version": "2.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Rodrigo Neto",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"chart.js": "^3.2.1",
"chartjs-adapter-luxon": "^1.0.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"envfile": "^6.14.0",
"express": "^4.17.1",
"jsdom": "^16.6.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.27.0",
"node-cron": "^3.0.0",
"pg": "^8.5.1",
"sequelize": "^6.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
}
}