-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.57 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
{
"name": "helm-ploayground",
"version": "0.1.0",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.10.9",
"@mui/lab": "^5.0.0-alpha.63",
"@mui/material": "^5.2.7",
"@mui/styles": "^5.2.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.2.0",
"@types/node": "^17.0.21",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.13",
"ace-builds": "^1.4.12",
"axios": "^0.24.0",
"bowser": "^2.11.0",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"react": "^17.0.2",
"react-ace": "^9.4.3",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "REACT_APP_VERSION=$(git rev-list -1 HEAD) REACT_APP_WASM_SIZE=$(wc -c <'./public/main.wasm') PUBLIC_URL=/ react-scripts start",
"build": "REACT_APP_VERSION=$(git rev-list -1 HEAD) REACT_APP_WASM_SIZE=$(wc -c <'./public/main.wasm') react-scripts build",
"build:wasm-exec": "cat $(go env GOROOT)/misc/wasm/wasm_exec.js > public/wasm_exec.js",
"build:wasm": "cd pkg/render && GOOS=js GOARCH=wasm go build -o ../../public/main-big.wasm",
"test": "react-scripts test",
"lint": "npx eslint \"**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "npm run lint -- --quiet --fix",
"check-types": "tsc --noEmit"
},
"author": {
"name": "Paul Vollmer",
"url": "https://github.com/paulvollmer"
},
"homepage": "https://paulvollmer.net/helm-playground",
"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/golang-wasm-exec": "^1.15.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.2"
}
}