This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 2.94 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
113
{
"name": "website",
"version": "0.0.1",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://git.holy.how/holy/website.git"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^6.2.1",
"@tomphttp/bare-client": "^1.0.4-build1",
"babel-loader": "^8.2.5",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.0.1",
"basic-webpack-obfuscator": "git+https://git.holy.how/holy/basic-webpack-obfuscator",
"bfj": "^7.0.2",
"browserslist": "^4.20.3",
"camelcase": "^6.3.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"clsx": "^1.1.1",
"crypto-js": "^4.1.1",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"file-loader": "^6.2.0",
"fs-extra": "^10.1.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"js-cookie": "^3.0.1",
"mini-css-extract-plugin": "^2.6.0",
"nord": "^0.2.1",
"postcss": "^8.4.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.6.0",
"process": "^0.11.10",
"prompts": "^2.4.2",
"random-seed": "^0.3.0",
"react": "^18.1.0",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.13.0",
"react-router-dom": "^6.3.0",
"resolve": "^1.22.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"semver": "^7.3.7",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.3.1",
"web-vitals": "^2.1.4",
"webpack": "^5.72.1",
"webpack-manifest-plugin": "^5.0.0",
"workbox-webpack-plugin": "^6.5.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.7.1",
"stomp": "github:sysce/stomp",
"ultraviolet": "github:titaniumnetwork-dev/Ultraviolet",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.9.0"
},
"lint-staged": {
"*.{mjs, js,json}": "prettier --write"
},
"scripts": {
"build-stomp": "node scripts/build-stomp.js",
"build-ultraviolet": "node scripts/build-ultraviolet.js",
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js",
"prepare": "node scripts/prepare.js",
"lint": "eslint ./src/"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
}
}