-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1020 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1020 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
31
32
33
34
35
36
{
"name": "lorafiit-application-server",
"version": "1.0.0",
"description": "LoRa@FIIT Application Server",
"main": "server.js",
"scripts": {
"server": "nodemon -r dotenv/config server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"buildClient": "npm run build --prefix client",
"buildServer": "NODE_ENV=production node -r dotenv/config server",
"build": "npm run buildClient && npm run buildServer"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"pg": "^8.5.1",
"react-redux": "^7.2.2",
"recharts": "^2.0.8",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"concurrently": "^6.0.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.7"
}
}