-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.29 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
{
"name": "structure",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "concurrently npm:backend npm:frontend npm:firebase",
"preview": "vite preview",
"frontend": "vite",
"backend": "cd api && npm run build:watch",
"firebase": "firebase emulators:start --only hosting,functions",
"build": "concurrently npm:build:client npm:build:api",
"build:client": "tsc && vite build",
"build:api": "cd api && npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "cd api && npm install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"quotes": [
1,
"double"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@monaco-editor/react": "^4.1.3",
"@structure-codes/utils": "^0.0.3",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"clsx": "^1.1.1",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"monaco-editor": "^0.25.2",
"nanoid": "^3.1.23",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-d3-tree": "^3.1.1",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.6.0",
"react-organizational-chart": "^2.1.0",
"react-query": "^3.19.0",
"react-router-dom": "^6.2.2",
"react-scripts": "4.0.3",
"recoil": "^0.6.1",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/file-saver": "^2.0.3",
"@types/lodash": "^4.14.171",
"@types/prismjs": "^1.16.5",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-syntax-highlighter": "^13.5.0",
"@vitejs/plugin-react": "^1.2.0",
"concurrently": "^6.2.0",
"http-proxy-middleware": "^2.0.1",
"msw": "^0.39.1",
"vite": "^2.8.6"
}
}