-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
108 lines (108 loc) · 3.46 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
{
"name": "factorio-blueprints",
"version": "0.1.0",
"private": true,
"homepage": "https://www.factorio.school/",
"proxy": "http://localhost:8080",
"dependencies": {
"@craco/craco": "^6.4.5",
"@fortawesome/fontawesome-svg-core": "6.7.1",
"@fortawesome/free-brands-svg-icons": "6.7.1",
"@fortawesome/free-regular-svg-icons": "6.7.1",
"@fortawesome/free-solid-svg-icons": "6.7.1",
"@fortawesome/react-fontawesome": "0.2.2",
"@tanstack/query-sync-storage-persister": "^5.62.7",
"@tanstack/react-query": "^4.26.1",
"@tanstack/react-query-devtools": "^4.26.1",
"@tanstack/react-query-persist-client": "^4.26.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/airbnb-prop-types": "^2.13.7",
"@types/atob": "^2.1.4",
"@types/classnames": "^2.3.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/marked": "^6.0.0",
"@types/node": "^22.10.2",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^5.0.1",
"airbnb-prop-types": "2.16.0",
"antlr4": "4.13.2",
"atob": "2.1.2",
"autoprefixer-stylus": "1.0.0",
"axios": "^1.7.9",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"concurrently": "9.1.0",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.13",
"disqus-react": "1.1.5",
"eslint-config-airbnb": "^19.0.4",
"eslint-find-rules": "4.2.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"fastestsmallesttextencoderdecoder": "1.0.22",
"firebase": "11.1.0",
"grpc": "1.24.11",
"holderjs": "^2.9.9",
"immutability-helper": "3.1.1",
"lodash": "4.17.21",
"marked": "15.0.1",
"pako": "2.1.0",
"prop-types": "15.8.1",
"query-string": "^9.1.1",
"re-base": "4.0.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.7",
"react-dom": "^18.3.1",
"react-dropzone": "14.3.5",
"react-error-boundary": "^4.1.2",
"react-helmet": "^6.1.0",
"react-router": "^7.0.1",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^7.0.2",
"react-scripts": "^5.0.1",
"react-select": "^5.9.0",
"serialize-query-params": "^2.0.2",
"stylus": "0.64.0",
"typescript": "^5.7.2",
"use-query-params": "^2.2.1",
"web-vitals": "^4.2.4"
},
"scripts": {
"analyze": "npx source-map-explorer 'build/static/js/*.js'",
"start": "craco start",
"watch": "concurrently --names 'webpack, stylus' --prefix name 'npm run start' 'npm run styles:watch'",
"build": "sh -ac 'source ./.env.${REACT_APP_ENV:-production}; craco build'",
"build:local": "REACT_APP_ENV=local yarn build",
"build:production": "REACT_APP_ENV=production yarn build",
"test": "craco test --env=jsdom",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
"eslint-find-option-rules": "eslint-find-rules --unused --plugin .eslintrc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}