-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 933 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 933 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
{
"name": "conan2d20-character-generator",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"predeploy": "yarn build",
"deploy": "NODE_DEBUG=gh-pages gh-pages -d dist"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}