forked from ueewbdy93/wedding-screen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
{
"name": "wedding-screan",
"version": "0.1.2",
"private": true,
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node dist/server",
"debug": "node --nolazy --inspect-brk=9229 dist/server",
"test": "mocha --recursive",
"build": "tsc",
"heroku-prebuild": "npm install --prefix frontend/",
"heroku-postbuild": "cp src/config.sample.ts src/config.ts && npm run build --prefix frontend/ && npm run build"
},
"cacheDirectories": ["frontend/node_modules"],
"dependencies": {
"bunyan": "^1.8.12",
"cookie-parser": "~1.4.3",
"debug": "^2.6.3",
"ejs": "^2.6.1",
"errorhandler": "^1.5.0",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"lodash": "^4.17.10",
"morgan": "~1.9.0",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"socket.io": "^2.1.1",
"typesafe-actions": "^1.1.3",
"utility-types": "^2.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/http-errors": "^1.6.1",
"@types/immutable": "^3.8.7",
"@types/lodash": "^4.14.108",
"@types/morgan": "^1.7.35",
"@types/node": "^10.0.4",
"@types/socket.io": "^1.4.33",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"sinon": "^4.5.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.8.0",
"tslint-eslint-rules": "^5.2.0",
"typescript": "^2.8.3"
}
}