This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "space-industrialist",
"version": "1.0.0",
"description": "A simple logistics game made in Typescript & HTML Canvas & React.",
"private": true,
"homepage": "https://achankf.github.io/space-industrialist/",
"dependencies": {
"dexie": "^3.2.3",
"hammerjs": "^2.0.8",
"immutable": "^4.2.4",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"myalgo-ts": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.6"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"lint": "eslint --cache ./src",
"lint:fix": "eslint --cache --fix ./src && yarn prettier --cache --write ./src",
"start": "esbuild src/index.tsx --bundle --sourcemap --outfile=dist/index.js --servedir=dist --watch",
"build": "esbuild src/index.tsx --bundle --sourcemap --minify --outfile=dist/index.js",
"test": "jest --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"keywords": [],
"author": "Alfred Chan <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@types/hammerjs": "^2.0.41",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/lz-string": "^1.3.34",
"@types/node": "^18.13.0",
"@types/react": "17.0.43",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}