-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "viewless",
"version": "0.1.0",
"scripts": {
"reset": "npx rimraf node_modules ./**/node_modules",
"dev": "modern dev",
"build": "modern build",
"start": "modern start",
"serve": "modern serve",
"new": "modern new",
"lint": "biome check",
"prepare": "simple-git-hooks",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@modern-js/runtime": "2.64.1",
"antd": "^5.24.2",
"dayjs": "^1.11.13",
"immer": "^9.0.21",
"inversify": "^6.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-infinite-scroll-component": "^6.1.0",
"reflect-metadata": "^0.1.13",
"zustand": "~4.4.3",
"@modern-js/plugin-tailwindcss": "2.64.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@modern-js/app-tools": "2.64.1",
"@modern-js/tsconfig": "2.64.1",
"@types/jest": "~29.2.4",
"@types/node": "~18.11.9",
"@types/react": "^18.3.11",
"@types/react-dom": "~18.3.1",
"lint-staged": "~15.4.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.7.3",
"tailwindcss": "~3.4.14"
}
}