-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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": "silex-front",
"private": true,
"version": "0.3.0",
"type": "module",
"author": "ArtFX TDs",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.7.14",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.13.1",
"axios": "^1.4.0",
"color-hash": "^2.0.1",
"deepmerge": "^4.2.2",
"graphql": "^16.6.0",
"is-electron": "^2.2.0",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-colorful": "^5.5.1",
"react-dom": "^18.2.0",
"react-p5": "^1.3.27",
"react-router-dom": "^6.11.2",
"recharts": "^2.6.2",
"socket.io-client": "^4.2.0",
"uuid": "^9.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"prettify": "prettier --check .",
"prettify:write": "prettier --write .",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/color-hash": "^1.0.1",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.1.9",
"@types/uuid": "^9.0.1",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.0",
"babel-plugin-import": "^1.13.3",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.8"
}
}