generated from operate-first/template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
110 lines (110 loc) · 2.4 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "meteor",
"version": "0.0.1",
"private": true,
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"@patternfly/patternfly": "^4.224.2",
"@patternfly/react-core": "^4.276.8",
"next": "^13.4.12",
"next-transpile-modules": "^10.0.0",
"prom-client": "^14.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.2",
"web-vitals": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.8",
"sass": "^1.64.1",
"typescript": "^5.1.3"
},
"scripts": {
"dev": "next dev",
"dev-debug": "NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"build": "next build",
"lint": "next lint && eslint \"src/**/*\""
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"prettier",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"node": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
},
"react": {
"version": "detect"
}
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
},
"prettier": {
"printWidth": 150,
"arrowParens": "always",
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSpacing": true
},
"browserslist": {
"production": [
">1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}