-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
118 lines (118 loc) · 3.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "wedding-screen",
"version": "1.1.0",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"start": "node dist/server",
"debug": "node --nolazy --inspect-brk=9229 dist/server",
"build": "concurrently --kill-others-on-fail -p '[{name}]' -n 'Node,Web' -c 'cyan.bold,green.bold' 'bnr build:server' 'bnr build:web'",
"dev": "concurrently --kill-others-on-fail -p '[{name}]' -n 'TypeScript,Build,Node,Web' -c 'cyan.bold,green.bold,white.bold' 'bnr build:server --watch' 'bnr dev:nodemon' 'bnr dev:web'",
"heroku-prebuild": "bash heroku-prebuild.sh && rm -f db/*",
"heroku-postbuild": "bash heroku-postbuild.sh",
"docker-build": "docker build -t dy93/wedding-screen:latest .",
"docker-publish": "docker push dy93/wedding-screen:latest"
},
"betterScripts": {
"build:server": "babel --copy-files --out-dir dist --source-maps --extensions '.ts,.tsx' --ignore \"@types\",\"frontend\" src",
"build:web": {
"command": "webpack --config webpack/prod.config.babel.ts",
"env": {
"NODE_ENV": "production",
"BABEL_ENV": "web:production"
}
},
"dev:nodemon": {
"command": "nodemon --delay 1.5 --ignore dist/public --ignore dist/types --inspect --watch dist dist/server.js",
"env": {
"PORT": "4000"
}
},
"dev:web": {
"command": "webpack serve --config webpack/dev.config.babel.ts",
"env": {
"NODE_ENV": "development",
"BABEL_ENV": "web"
}
}
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.12",
"@reduxjs/toolkit": "^1.9.7",
"better-npm-run": "^0.1.1",
"bunyan": "^1.8.15",
"cookie-parser": "^1.4.6",
"core-js": "^3.33.0",
"debug": "^2.6.3",
"ejs": "^3.1.9",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"http-errors": "~1.6.2",
"js-cookie": "^3.0.5",
"lodash": "4.17.21",
"morgan": "^1.9.1",
"react": "^18.2.0",
"react-countup": "^6.4.2",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-transition-group": "^4.4.5",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.3",
"redux-thunk": "^2.4.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"source-map-support": "^0.5.21",
"sqlite3": "^5.0.2",
"tslib": "^2.6.2",
"tss-react": "^4.9.2",
"typesafe-actions": "^4.4.2",
"utility-types": "^3.10.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@babel/register": "^7.22.15",
"@types/babel__core": "^7.20.2",
"@types/bunyan": "^1.8.9",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/http-errors": "^1.6.1",
"@types/immutable": "^3.8.7",
"@types/js-cookie": "^3.0.4",
"@types/lodash": "^4.14.108",
"@types/morgan": "^1.7.35",
"@types/node": "^10.17.60",
"@types/react-dom": "^18.2.12",
"@types/react-transition-group": "^4.4.7",
"@types/redux-logger": "^3.0.10",
"@types/sqlite3": "^3.1.7",
"@types/uuid": "^9.0.5",
"@types/webpack": "^5.28.3",
"babel-loader": "^8.0.4",
"concurrently": "^8.2.1",
"copyfiles": "^2.1.0",
"css-loader": "^6.8.1",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.5.0",
"mocha": "^5.0.5",
"nodemon": "^3.0.1",
"redux-devtools-extension": "2.13.8",
"style-loader": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}