-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "forumoji",
"sideEffects": [
"*.css"
],
"author": {
"name": "lopste",
"url": "https://vercte.net/"
},
"license": "CC0-1.0",
"dependencies": {
"@svgr/webpack": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve": "^14.2.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.89.0"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production && webpack --config webpack.prod.ts",
"dev": "webpack-dev-server --hot --config webpack.dev.ts",
"lint": "eslint ./src/ --fix"
}
}