forked from macnaer/REST-API-Express-f12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 790 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
{
"name": "f12-rest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"client": "npm start --prefix client-app",
"dev": "concurrently \"npm run start\" \"npm run client\" \"npm run seed\"",
"seed": "node seeder/seeder.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"concurrently": "^6.4.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"react-redux": "^7.2.6",
"react-router-dom": "^6.1.1",
"redux": "^4.1.2",
"sequelize": "^6.12.0-beta.3",
"tedious": "^14.0.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}