-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.41 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
{
"name": "webpack-typescript-boilerplate",
"version": "0.0.0",
"description": "Webpack Typescript Boilerplate: Node.js, Express, Pug, TS, SCSS, jQuery, express-responsive-images",
"author": "Murat Motz <dev@ztom.de> (https://www.kmgt.de)",
"license": "MIT",
"type": "module",
"scripts": {
"DEV____________": "choose OS ----------> npm run dev:<os>",
"dev:windows": "(set NODE_ENV=development) && npm run dev",
"dev:unix": "NODE_ENV=development npm run dev",
"dev": "npm-run-all --parallel watch:client watch:ts watch:server",
"watch:client": "webpack --watch --mode=development --progress --profile",
"watch:ts": "tsc -w",
"watch:server": "nodemon --trace-warnings --trace-deprecation ./server-build/app.js",
"PROD___________": "choose OS ----------> npm run prod:<os>",
"prod:windows": "(set NODE_ENV=production) && npm run prod",
"prod:unix": "NODE_ENV=production npm run prod",
"prod": "npm run build:client && npm run build:server && node ./server-build/app.js",
"build:client": "webpack --mode=production --progress --profile",
"build:server": "tsc"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"config": "^3.3.9",
"crypto": "^1.0.1",
"express": "^4.18.2",
"express-responsive-images": "^1.8.0",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"jquery": "^3.6.4",
"memorystore": "^1.6.7",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@types/compression": "^1.7.2",
"@types/config": "^3.3.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/jquery": "^3.5.16",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.2",
"acorn": "^8.8.2",
"babel-loader": "^9.1.2",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"gulp-babel": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"html-webpack-pug-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"pug-loader": "^2.4.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}