forked from typescript-exercises/typescript-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.28 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
{
"name": "typescript-exercises",
"version": "0.1.0",
"private": true,
"author": "Marat Dulin",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/debounce": "^1.2.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-eslint": "^10.1.0",
"debounce": "^1.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"monaco": "^1.201704190613.0",
"monaco-editor": "^0.30.1",
"monaco-editor-webpack-plugin": "^6.0.0",
"prettier": "^2.3.2",
"raw-loader": "^4.0.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.8",
"react-dom": "^16.13.1",
"react-scripts": "^4.0.3",
"react-spinners": "^0.9.0",
"rxjs": "^6.5.5",
"typescript": "~4.4.4",
"workerize-loader": "^1.3.0"
},
"scripts": {
"start": "EXTEND_ESLINT=true react-app-rewired start",
"build": "EXTEND_ESLINT=true react-app-rewired build",
"lint": "eslint 'src/**/*.ts{,x}'",
"lint-fix": "eslint --fix 'src/**/*.ts{,x}'",
"eject": "react-app-rewired eject",
"release": "yarn build && rm -Rf release && git clone [email protected]:typescript-exercises/typescript-exercises.github.io.git release && cd release && git checkout gh-pages && rm -Rf * && cp -r ../build/* . && git add -A && git commit -m 'Update website.' && git push"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"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"
]
}
}