-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.98 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
{
"dependencies": {
"autoprefixer": "^10.4.20",
"body-parser": "^1.20.3",
"crypto": "^1.0.1",
"debug": "^4.3.7",
"dompurify": "^3.1.7",
"esm": "^3.2.25",
"express": "^4.21.0",
"jsxteamon2": "^1.0.0",
"morgan": "^1.10.0",
"path": "^0.12.7",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"require": "^0.4.4",
"tslib": "^2.8.1",
"uuid": "^10.0.0",
"vdom": "^0.0.22"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.11.1",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"babel-loader": "^9.2.1",
"babel-plugin-rewire": "^1.2.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npx eslint . && npx prettier --write ."
}
},
"scripts": {
"test": "jest",
"build": "npx prettier --write . && webpack --config webpack.config.js && sass ./src/app/styles/style.scss ./src/app/styles/style.css && npx postcss ./src/app/styles/style.css -o ./src/app/styles/style.css",
"start": "webpack-dev-server --open"
}
}