-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.74 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
{
"name": "react-nodejs-webpack",
"version": "1.0.0",
"description": "A setup of React with Webpack. Don't use in production.",
"private": true,
"sideEffects": [
"*.css",
"*.sass",
"*.scss"
],
"type": "module",
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"analyze": "cross-env ANALYZER=true pnpm build",
"dev:client": "webpack serve --config configs/dev/webpack.client.js --mode=development",
"dev:server": "rimraf dist && webpack --config configs/dev/webpack.server.js --mode=development --watch",
"dev:start": "node dist/server.cjs",
"dev": "run-p dev:client dev:server",
"build:client": "webpack --mode=production --node-env production --config configs/prod/webpack.client.js",
"build:server": "webpack --mode=production --node-env production --config configs/prod/webpack.server.js",
"build": "rimraf build && run-s build:client build:server",
"format": "prettier --write",
"lint-staged": "lint-staged",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint",
"prepare": "husky install",
"start": "cross-env NODE_ENV=production node build/server.js",
"typecheck": "tsc"
},
"author": "DuCanhGH",
"license": "MIT",
"dependencies": {
"@remix-run/node": "2.1.0",
"@remix-run/router": "1.10.0",
"compression": "1.7.4",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"express": "4.18.2",
"fs-extra": "11.1.1",
"husky": "8.0.3",
"react": "0.0.0-experimental-8039e6d0b-20231026",
"react-dom": "0.0.0-experimental-8039e6d0b-20231026",
"react-markdown": "9.0.0",
"react-router-dom": "6.17.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/plugin-syntax-flow": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@swc/core": "1.3.95",
"@types/clean-css": "4.2.9",
"@types/compression": "1.7.4",
"@types/express": "4.17.20",
"@types/fs-extra": "11.0.3",
"@types/node": "20.8.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@types/shell-quote": "1.7.3",
"@types/webpack-bundle-analyzer": "4.6.2",
"@types/webpack-env": "1.18.3",
"@types/webpack-hot-middleware": "2.25.8",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"clean-css": "5.3.2",
"compression-webpack-plugin": "10.0.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "5.0.1",
"cssnano": "6.0.1",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"fast-glob": "3.3.1",
"file-loader": "6.2.0",
"lint-staged": "15.0.2",
"mini-css-extract-plugin": "2.7.6",
"node-sass": "9.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"postcss-loader": "7.3.3",
"prettier": "3.0.3",
"prettier-plugin-jsdoc": "1.1.1",
"react-refresh": "0.14.0",
"rimraf": "5.0.5",
"sass": "1.69.5",
"sass-loader": "13.3.2",
"shell-quote": "1.8.1",
"style-loader": "3.3.3",
"swc-loader": "0.2.3",
"terser": "5.22.0",
"terser-webpack-plugin": "5.3.9",
"type-fest": "4.6.0",
"typescript": "5.3.0-dev.20231029",
"webpack": "5.89.0",
"webpack-bundle-analyzer": "4.9.1",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "6.1.1",
"webpack-dev-server": "4.15.1",
"webpack-hot-middleware": "2.25.4",
"webpack-manifest-plugin": "5.0.0",
"webpack-merge": "5.10.0",
"workbox-cacheable-response": "7.0.0",
"workbox-core": "7.0.0",
"workbox-expiration": "7.0.0",
"workbox-precaching": "7.0.0",
"workbox-routing": "7.0.0",
"workbox-strategies": "7.0.0",
"workbox-webpack-plugin": "7.0.0"
}
}