-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
{
"name": "leetabit.dgtiles",
"type": "module",
"license": "MIT",
"private": true,
"dependencies": {
"@emotion/react": "11.9.3",
"@reduxjs/toolkit": "1.8.3",
"bson": "4.6.5",
"compress-json": "2.0.1",
"history": "5.3.0",
"license-checker": "25.0.1",
"parse-package-name": "1.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.3",
"react-redux": "8.0.2",
"react-router-dom": "6.3.0",
"redux": "4.2.0",
"redux-persist": "6.0.0",
"redux-thunk": "2.4.1",
"remark-gfm": "3.0.1",
"typescript": "4.7.4"
},
"devDependencies": {
"@axe-core/react": "4.4.3",
"@types/react-dom": "18.0.6",
"@types/react-redux": "7.1.24",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "8.3.4",
"cross-env": "7.0.3",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-only-warn": "1.0.3",
"raw.macro": "0.5.0",
"react-scripts": "5.0.1",
"rimraf": "3.0.2",
"yarn-or-npm": "3.0.1",
"@babel/core": "7.19.0",
"@types/react": "18.0.18",
"eslint": "8.23.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.7",
"eslint-plugin-react-hooks": "4.6.0",
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.19.0"
},
"scripts": {
"generate": "node scripts/generateFiles.mjs",
"cfg": "( yarn list || npm ls --include=dev --include=peer --include=prod --include=optional ) && eslint --print-config ./src/index.tsx",
"lint": "eslint ./src/**/*.{ts,tsx,js,jsx,mjs} ./scripts/**/*.{ts,tsx,js,jsx,mjs} --max-warnings=0",
"clean": "rimraf ./build",
"start": "yon run clean && yon run generate && react-scripts start",
"build": "cross-env CI=true && yon run clean && yon run generate && yon run lint && react-scripts build",
"test": "cross-env CI=true && yon run generate && react-scripts test --env=jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}