forked from Ecehuh67/Tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "tetris",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"scripts": {
"eslint": "npm run eslint.ts && npm run eslint.js",
"eslint.js": "eslint src/ --ext .jsx --ext .js",
"eslint.ts": " eslint --config .eslintrc-ts.yml --ext .tsx src/",
"test": "npm run eslint",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production"
},
"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": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@types/react": "16.9.43",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"babel-loader": "8.1.0",
"css-loader": "3.5.3",
"eslint": "7.1.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"file-loader": "6.0.0",
"less-loader": "6.1.0",
"mini-css-extract-plugin": "0.9.0",
"ts-loader": "8.0.1",
"typescript": "3.9.7",
"utility-types": "3.10.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
}
}