-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "screeps-tools",
"version": "2.0.0",
"description": "Tools to help players of the Programming MMO Screeps",
"author": "admon84",
"license": "MIT",
"keywords": [
"screeps",
"typescript",
"react"
],
"homepage": "https://admon84.github.io/screeps-tools",
"bugs": "https://github.com/admon84/screeps-tools/issues",
"repository": {
"type": "git",
"url": "https://github.com/admon84/screeps-tools.git"
},
"devDependencies": {
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.1",
"react-scripts": "5.0.1",
"sass": "^1.62.1",
"typescript": "^4.9.5"
},
"scripts": {
"build": "PUBLIC_URL=/ react-scripts build",
"build-prod": "react-scripts build",
"deploy": "gh-pages -d build",
"format": "npx prettier --write 'src/**/*.{ts,tsx}'",
"predeploy": "npm run build-prod",
"start": "react-scripts start",
"test": "react-scripts test"
},
"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"
]
}
}