-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "hackerese",
"version": "0.1.0",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
"build": "modern build",
"start": "modern start",
"serve": "modern serve",
"deploy": "modern deploy",
"new": "modern new",
"lint": "modern lint",
"prepare": "husky",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@douyinfe/semi-ui": "^2.64.0",
"@modern-js/plugin-bff": "^2.58.1",
"@modern-js/plugin-koa": "^2.58.1",
"@modern-js/plugin-polyfill": "^2.58.1",
"@modern-js/plugin-tailwindcss": "^2.58.1",
"@modern-js/runtime": "^2.58.1",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-logger": "^3.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@douyinfe/semi-rspack-plugin": "^2.64.0",
"@modern-js-app/eslint-config": "^2.58.1",
"@modern-js/app-tools": "^2.58.1",
"@modern-js/eslint-config": "^2.58.1",
"@modern-js/tsconfig": "^2.58.1",
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/koa-logger": "^3.1.5",
"@types/node": "^22.4.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
}
}