forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.84 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
{
"name": "vtadmin",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.19.0",
"npm": ">=8.1.0"
},
"dependencies": {
"@bugsnag/js": "^7.20.0",
"@headlessui/react": "^1.7.8",
"@types/jest": "^29.4.0",
"@types/node": "^16.11.7",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-router-dom": "^5.3.3",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"downshift": "^7.2.0",
"highcharts": "^10.3.3",
"highcharts-react-official": "^3.1.0",
"history": "^5.3.0",
"lodash-es": "^4.17.21",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.0.1",
"query-string": "^6.14.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flow-renderer": "^10.3.17",
"react-query": "^3.5.9",
"react-router-dom": "^5.3.4",
"react-tiny-popover": "^6.0.5",
"react-toastify": "^8.1.0",
"sass": "^1.58.0",
"svgo": "^3.0.2",
"typescript": "^4.5.4",
"web-vitals": "^3.1.1"
},
"scripts": {
"local": "REACT_APP_VTADMIN_API_ADDRESS=\"http://localhost:14200\" REACT_APP_ENABLE_EXPERIMENTAL_TABLET_DEBUG_VARS=\"true\" PORT=14201 react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix && npm run lint:stylelint:fix",
"lint:eslint": "eslint --ext js,ts,tsx src",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:prettier": "prettier --config \"./.prettiercc\" --check \"src/**/*.{js,jsx,ts,tsx,css,scss}\"",
"lint:prettier:fix": "npm run lint:prettier -- --write",
"lint:stylelint": "stylelint \"**/*.{css,scss}\"",
"lint:stylelint:fix": "npm run lint:stylelint -- --fix",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"transformIgnorePatterns": [
"/!node_modules\\/lodash-es/"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^14.2.0",
"@types/lodash-es": "^4.17.4",
"autoprefixer": "^10.4.2",
"msw": "^0.36.8",
"postcss": "^8.4.6",
"prettier": "^2.2.1",
"protobufjs": "^6.11.3",
"react-scripts": "5.0.1",
"serve": "^14.2.0",
"stylelint": "^14.4.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"tailwindcss": "^3.0.18"
}
}