-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "scene_presets",
"homepage": ".",
"scripts": {
"build": "webpack",
"lint": "eslint -c .automated.eslintrc.json .",
"lint_fix": "eslint -c .automated.eslintrc.json . --fix",
"lint_pedantic": "eslint -c .pedantic.eslintrc.json ."
},
"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"
]
},
"devDependencies": {
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"@typescript-eslint/eslint-plugin": "6.7.4",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.14",
"ts-loader": "9.5.2",
"tsutils": "3.21.0",
"webpack": "5.99.8",
"webpack-cli": "6.0.1"
},
"dependencies": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}