-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.91 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
{
"name": "shiny-sim",
"version": "1.0.0",
"description": "A full-stack web application that simulates shiny hunting Pokemon and keeps track of hunts.",
"private": true,
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && cd src/api && go build routes.go db.go && ./api",
"webapp": "webpack serve --mode development --devtool inline-source-map --hot",
"backend": "cd src/api && go build && ./api",
"backend-precompiled": "cd src/api && ./routes",
"dev": "concurrently \"npm run backend\" \"npm run webapp\"",
"container": "concurrently \"npm run backend-precompiled\" \"npm run webapp\""
},
"author": "Christopher Coco",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/base": "^5.0.0-beta.58",
"@mui/icons-material": "^6.1.1",
"@mui/material": "^6.1.1",
"@mui/styled-engine-sc": "^6.1.1",
"babel-polyfill": "^6.26.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.13",
"webpack": "^5.94.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.10.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"nodemon": "^3.1.5",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"react-router-dom": "^6.26.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.12",
"url-loader": "^4.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}