This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.65 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
{
"name": "digital-coil-ui",
"version": "0.1.0",
"private": true,
"license": "MIT",
"dependencies": {
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"ajv": "^8.6.3",
"baseui": "^9.116.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qr-barcode-scanner": "^1.0.6",
"react-qr-reader": "^2.2.1",
"react-scripts": "4.0.3",
"react-step-wizard": "^5.3.9",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.1",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"prepare": "husky install",
"start": "HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"format": "prettier --write \"{public/**/*,src/**/*,*}.{js,jsx,ts,tsx,json,css,md,html}\"",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"generate": "openapi-generator-cli generate -i http://localhost:8080/openapi.json -g typescript-axios -o src/client"
},
"eslintConfig": {
"plugins": [
"baseui",
"simple-import-sort"
],
"extends": [
"react-app",
"react-app/jest",
"prettier"
],
"rules": {
"baseui/deprecated-theme-api": "warn",
"baseui/deprecated-component-api": "warn",
"baseui/no-deep-imports": "warn",
"simple-import-sort/imports": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"jsxSingleQuote": true,
"endOfLine": "auto"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix",
"{public/**/*,src/**/*,*}.{js,jsx,ts,tsx,json,css,md,html}": "prettier --write"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.4.7",
"@types/react-qr-reader": "^2.1.4",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-baseui": "^9.116.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.1",
"source-map-explorer": "^2.5.2"
}
}