-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.04 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
{
"author": "cakedan",
"description": "notsobot.com-frontend",
"files": [
"lib/**/*"
],
"license": "MPL-2.0",
"main": "lib/index.js",
"name": "notsobot.com-frontend",
"types": "lib/index.d.ts",
"version": "0.0.1",
"dependencies": {
"@babel/core": "^7.18.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"browserslist": "^4.20.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"postcss-loader": "^7.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.39.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript-plugin-css-modules": "^3.4.0",
"url-search-params-polyfill": "^8.1.1",
"webpack-google-cloud-storage-plugin": "^0.9.0",
"webpack-manifest-plugin": "^5.0.0",
"whatwg-fetch": "^3.6.2",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@babel/types": "^7.18.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.5.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"typescript": "^4.7.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"build": "tsc",
"start": "npm run start:stable",
"start:beta": "npm run webpack:beta",
"start:beta-nohash": "npm run webpack:beta-nohash",
"start:stable": "npm run webpack:stable",
"webpack:beta": "webpack --mode=development --progress --watch --env hash",
"webpack:beta-nohash": "webpack --mode=development --progress --watch",
"webpack:stable": "webpack --mode=production --progress --watch --env production",
"test": "echo \"Error: no test specified\" && exit 1"
}
}