-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "react-ssr-setup",
"version": "0.0.5",
"author": "MrWangJustToDo",
"license": "MIT",
"scripts": {
"dev": "node ./dev.js",
"build": "pnpm run build:packages && pnpm run build:ui",
"dev:packages": "ts-node ./scripts/rollupWatch.ts",
"build:packages": "ts-node ./scripts/rollupBuild.ts",
"dev:ui": "cd ui && pnpm run dev",
"build:ui": "cd ui && pnpm run build",
"build:static": "cd ui && pnpm run build:static",
"start:ui": "cd ui && pnpm run start",
"theme": "chakra-cli tokens ./ui/src/shared/theme.ts",
"lint": "eslint --cache --ext ts,tsx .",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --ignore-path .prettierignore --write .",
"clean": "pnpm -p -r -c exec rm -rf dist .cache dev",
"purge": "pnpm -p -r -c exec rm -rf node_modules",
"test": "jest"
},
"devDependencies": {
"@chakra-ui/cli": "^2.5.5",
"@chakra-ui/react": "^2.10.3",
"@chakra-ui/styled-system": "^2.12.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@swc/core": "^1.8.0",
"@swc/helpers": "^0.5.12",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.8.7",
"axios": "^1.7.7",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"framer-motion": "^11.11.11",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^3.3.3",
"project-tool": "git+ssh://[email protected]:MrWangJustToDo/project-tool.git",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.0",
"typescript": "^5.3.3"
}
}