-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.86 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.86 KB
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
{
"name": "gymtimer-new",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/howler": "^2.1.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"audio-context-timers": "^4.0.54",
"howler": "^2.1.2",
"nosleep.js": "https://github.com/ViRPo/NoSleep.js#f7a6122f5d6700f18a68bff2c4114b81fdf6fa55",
"postcss-import": "^12.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "3.1.1",
"tailwindcss": "^1.1.2",
"typescript": "^3.6.3",
"xo": "https://github.com/xojs/xo#ee145cb"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"devDependencies": {
"@rescripts/cli": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint-config-xo-react": "^0.20.0",
"eslint-config-xo-typescript": "^0.18.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"postcss-css-variables": "^0.13.0",
"rescript-use-postcss-config": "^1.0.0",
"tailwind-css-variables": "^2.0.3"
},
"xo": {
"extends": [
"xo-react",
"xo-typescript"
],
"semicolon": false,
"rules": {
"import/no-unassigned-import": [
"error",
{
"allow": [
"src/css/*.css",
"tailwindcss/*.css"
]
}
],
"@typescript-eslint/semi": [
"error",
"never"
],
"radix": [
"error",
"as-needed"
],
"react/prop-types": [
0
]
},
"env": [
"browser"
],
"extensions": [
"ts",
"tsx"
]
}
}