-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.26 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
{
"name": "arent-test",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.2",
"@mui/styles": "^5.14.1",
"@reduxjs/toolkit": "1.7.1",
"chart.js": "4.3.2",
"lodash-es": "4.17.21",
"react": "17.0.2",
"react-chartjs-2": "5.2.0",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router-dom": "5.2.0",
"react-scripts": "5.0.1",
"styled-components": "5.3.3",
"ts-node": "10.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"start:prod": "npm run build && serve -s build",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"lint": "yarn run eslint src",
"lint:fix": "yarn run eslint --fix src",
"lint:css": "stylelint src/**/*.css",
"prettify": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.x"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@types/fontfaceobserver": "2.1.0",
"@types/lodash-es": "4.17.6",
"@types/luxon": "2.3.2",
"@types/node": "14.14.31",
"@types/react": "18.0.2",
"@types/react-dom": "18.0.0",
"@types/react-redux": "7.1.22",
"@types/react-router-dom": "5.3.2",
"@types/react-swipeable-views": "0.13.1",
"@types/rimraf": "3.0.2",
"@types/shelljs": "0.8.11",
"@types/styled-components": "5.1.20",
"@types/webpack": "5.28.0",
"@types/webpack-env": "1.16.3",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react-hooks": "4.3.0",
"prettier": "2.5.1",
"stylelint": "14.2.0",
"stylelint-config-recommended": "6.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "4.5.4"
}
}