-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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
{
"name": "ants",
"version": "0.1.0",
"description": "Ants Simulation",
"repository": "git+https://github.com/gregorybchris/ants.git",
"homepage": "https:a//github.com/gregorybchris/ants#readme",
"main": "src/index.ts",
"keywords": [
"ants",
"simulation"
],
"author": "Chris Gregory",
"license": "ISC",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/poppins": "^4.5.0",
"@mui/icons-material": "^5.6.0",
"@mui/material": "^5.6.0",
"@types/hex-rgb": "^4.1.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"copy-webpack-plugin": "^10.2.4",
"hex-rgb": "^5.0.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^6.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"stream-browserify": "^3.0.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/chrome": "^0.0.180",
"@webpack-cli/serve": "^1.6.1",
"autoprefixer": "^10.4.4",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.12",
"sass": "^1.45.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.23",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"scripts": {
"start": "webpack serve --open --mode development",
"build": "webpack --mode production",
"serve": "serve dist -p 3001",
"clean": "rm -rf dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}