-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1010 Bytes
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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.6",
"@mui/lab": "^5.0.0-alpha.99",
"@mui/material": "^5.10.5",
"phoenix": "^1.6.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"recoil": "^0.7.5"
},
"devDependencies": {
"@types/phoenix": "^1.5.4",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@vitejs/plugin-react": "^2.1.0",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 80,
"semi": true,
"jsxSingleQuote": true,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
}
}