forked from ynput/ayon-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.2 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": "ayon-frontend",
"private": false,
"version": "0.3.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"format": "prettier --write src/**/*.{js,jsx} --config ./.prettierrc",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@reduxjs/toolkit": "^1.8.2",
"@rjsf/core": "^4.2.0",
"@rtk-query/graphql-request-base-query": "^2.2.0",
"@uiw/react-textarea-code-editor": "^2.1.9",
"@ynput/ayon-react-components": "^0.5.4",
"axios": "^1.6.3",
"chart.js": "^4.2.0",
"date-fns": "^2.29.3",
"html-to-image": "^1.11.11",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"primeicons": "^5.0.0",
"primereact": "^8.7.3",
"react": "^18.0.0",
"react-datepicker": "^4.11.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^4.0.3",
"react-intersection-observer": "^9.5.2",
"react-markdown": "^8.0.6",
"react-perfect-scrollbar": "^1.5.8",
"react-quill": "^2.0.0",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.3",
"react-transition-group": "^4.4.2",
"react-use-websocket": "^4.2.0",
"sass": "^1.62.0",
"semver": "^7.5.4",
"short-uuid": "^4.2.0",
"styled-components": "^5.3.6",
"turndown": "^7.1.2",
"use-query-params": "^2.1.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"vite": "^2.9.9",
"vite-plugin-linter": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn eslint",
"yarn format"
]
}
}