-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 881 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 881 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
{
"name": "stiff-server",
"version": "0.0.2",
"private": true,
"main": "src/App.js",
"scripts": {
"start": "nodemon --exec babel-node src/App.js",
"format": "prettier --config package.json '**.{js,css}' --write"
},
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"connect-redis": "^3.4.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"ioredis": "^4.5.1",
"moment": "^2.24.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"ramda": "^0.26.1",
"socket.io": "^2.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"prettier": "^1.15.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}