forked from MvEerd/ergogen-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "ergogen-gui",
"version": "0.2.0",
"homepage": "https://ergogen.cache.works/",
"private": false,
"dependencies": {
"@monaco-editor/react": "4.2.2",
"@svgdotjs/svg.js": "^3.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"ergogen": "^4.0.2",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"openjscad-react": "^0.0.1-canary-07",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-easy-panzoom": "^0.4.4",
"react-scripts": "4.0.3",
"react-select": "^5.2.1",
"react-split": "^2.0.14",
"react-use": "^17.3.2",
"styled-components": "^5.3.1",
"three-dxf": "^1.0.1",
"typescript": "^4.4.3",
"web-vitals": "^1.0.1",
"yaml-js": "^0.2.3"
},
"scripts": {
"build-ergogen": "cd node_modules/ergogen && yarn install && yarn run build && cp dist/ergogen.js ../../public/dependencies/ergogen.js",
"postinstall": "yarn run build-ergogen",
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"postbuild": "yarn run build-ergogen",
"test": "react-scripts --openssl-legacy-provider test",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
},
"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/js-yaml": "^4.0.3",
"@types/lodash-es": "^4.17.5",
"@types/lodash.debounce": "^4.0.6",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"gh-pages": "^3.2.3"
}
}