forked from esna-SKB/SKB_Plattform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.11 KB
/
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
38
39
40
41
42
43
{
"name": "reactexpress",
"version": "1.0.0",
"description": "Server handling requests for Esna platform",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "mocha"
},
"author": "Esna",
"license": "MIT",
"devDependencies": {
"mocha": "^5.2.0",
"nodemon": "^1.14.6",
"really-need": "^1.9.2",
"supertest": "^3.1.0"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.2.1",
"jwks-rsa": "^1.2.1",
"mongodb": "^3.1.0-beta4",
"mongoose": "^5.1.2",
"nodemailer": "^4.6.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.4.0",
"react-cookie": "^2.1.6",
"react-cookies": "^0.1.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.4"
}
}