-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 886 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 886 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
39
40
{
"name": "beton-backend",
"version": "1.0.0",
"main": "app/index.js",
"author": "kulczy",
"license": "MIT",
"engines": {
"node": "~8.11.1",
"npm": ">=5.6.0"
},
"scripts": {
"start": "node -r dotenv/config app/index.js",
"dev": "nodemon -r dotenv/config app/index.js",
"test": "jest"
},
"dependencies": {
"body-parser": "^1.18.2",
"boom": "^7.2.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"moment": "^2.22.1",
"moment-timezone": "^0.5.16",
"mysql2": "^1.5.3",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"sequelize": "^4.37.7",
"socket.io": "^2.1.1"
},
"devDependencies": {
"dotenv": "^5.0.1",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"nodemon": "^1.17.4",
"supertest": "^3.0.0"
},
"jest": {
"testEnvironment": "node"
}
}