-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "g-code-debugger",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=15",
"npm": ">=7"
},
"dependencies": {
"@babylonjs/core": "^5.18.0",
"@babylonjs/gui": "^5.18.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@monaco-editor/react": "^4.3.1",
"@mui/material": "^5.1.0",
"@mui/system": "^5.2.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.37",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-window": "^1.8.5",
"monaco-editor": "^0.30.1",
"react": "^17.0.2",
"react-babylonjs": "3.0.29",
"react-dom": "^17.0.2",
"react-resize-detector": "^6.7.6",
"react-scripts": "5.0.1",
"react-window": "^1.8.6",
"typescript": "^4.4.4",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:react && npm run build:bundle",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint:check": "npx eslint .",
"eslint:fix": "npx eslint --fix --ext .ts,.tsx .",
"build:react": "react-scripts build",
"build:bundle": "npx gulp"
},
"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": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gulp": "^4.0.2",
"gulp-inline-source": "^4.0.0",
"gulp-replace": "^1.1.3"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"
]
}
}