-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 917 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
37
38
{
"name": "dislocation",
"version": "1.0.0",
"description": "Wagon dislocation app",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"vagon",
"dislocation"
],
"author": "Madiyar Makhatov <madi_mahatov@mail.ru>",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
"cors": "^2.8.5",
"cron": "^1.8.2",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"express-xml-bodyparser": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.9",
"pg": "^8.10.0",
"pg-pool": "^3.6.0",
"xml": "^1.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.21"
}
}