-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "writers-delight",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"deploy": "gh-pages -d dist",
"type-check": "tsc --noEmit",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
"format": "prettier --write ./src"
},
"dependencies": {
"@react-admin/ra-ai": "^5.0.0-beta.1",
"@react-admin/ra-form-layout": "^5.0.0-beta.0",
"highlight-search-term": "^1.0.0",
"lodash": "^4.17.21",
"ra-data-local-storage": "^5.0.1",
"ra-input-rich-text": "^5.0.1",
"react": "^18.3.1",
"react-admin": "^5.0.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"prettier": "^2.8.8",
"typescript": "^5.5.2",
"vite": "^5.3.1"
}
}