forked from rsimp/gan-scrambler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.02 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
109
110
111
{
"name": "gan-scrambler",
"version": "0.1.0",
"private": true,
"dependencies": {
"@lingui/react": "^3.8.2",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.5.0",
"classed-components": "^1.0.1",
"fontsource-roboto": "^3.1.5",
"notistack": "^1.0.3",
"path-parse": "^1.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^5.10.9",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"typed-redux-saga": "^1.3.1",
"workbox-core": "^6.0.2",
"workbox-expiration": "^6.0.2",
"workbox-precaching": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"analyze": "react-scripts build --stats && webpack-bundle-analyzer build/bundle-stats.json -m static -r build/bundle-stats.html -O && open build/bundle-stats.html",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"buildcss": "tailwindcss build --no-autoprefixer -o src/styles/tailwind.css"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"react",
"prettier",
"@typescript-eslint"
],
"rules": {
"prettier/prettier": "error"
},
"overrides": [
{
"files": [
"**/*.tsx"
],
"rules": {
"react/prop-types": "off"
}
}
]
},
"homepage": "https://rsimp.io/gan-scrambler/",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@lingui/cli": "^3.8.2",
"@lingui/macro": "^3.8.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.15",
"@types/path-parse": "^1.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/web-bluetooth": "0.0.8",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.2.3",
"classed.macro": "^1.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^3.1.0",
"prettier": "^2.0.5",
"react-scripts": "^4.0.0",
"tailwindcss": "^2.0.2",
"tailwindcss-children": "^2.1.0",
"typescript": "^3.9.7",
"webpack-bundle-analyzer": "^4.4.0"
}
}