-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.5 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
{
"name": "wrtsc-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.8.4",
"classnames": "^2.3.1",
"fast-deep-equal": "^3.1.3",
"immer": "^9.0.15",
"pretty-ms": "^8.0.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-popper-tooltip": "^4.4.2",
"react-redux": "^8.0.2",
"react-switch": "^7.0.0",
"react-tabs": "^5.1.0",
"tailwindcss": "^3.0.1"
},
"scripts": {
"dev": "WRTSC_VERSION=$(git describe --tags) parcel src/index.html",
"build": "WRTSC_VERSION=$(git describe --tags) rm -rf dist && parcel build src/index.html",
"deploy": "rsync -av --delete dist/ catgirl.ai:/var/www/wrtsc",
"tas": "ts-node -T --esm --experimental-specifier-resolution=node src/engine/speedrun.ts",
"test": "jest"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@parcel/bundler-experimental": "^2.7.0",
"@parcel/transformer-svg-react": "^2.7.0",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.0.0",
"@types/node": "^12.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@types/react-tabs": "^2.3.4",
"autoprefixer": "^10.4.0",
"babel-jest": "^28.0.2",
"eslint": "^8.23.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^7.0.4",
"jest": "^28.0.0",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^12.1.7",
"parcel": "^2.7.0",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.30",
"process": "^0.11.10",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.3",
"typescript": "^4.8.2"
},
"lint-staged": {
"*.{ts,tsx}": "tsc-files --noEmit src/react-app-env.d.ts",
"*.{ts,tsx,js}": "eslint --fix --max-warnings 0"
},
"type": "module"
}