-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.96 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
{
"name": "full-stack-ssr-template",
"version": "1.0.0",
"description": "",
"author": "MrWangJustToDo",
"private": true,
"license": "MIT",
"scripts": {
"build": "pnpm run build:packages && pnpm run build:backend && pnpm run build:frontend",
"dev:packages": "ts-node ./scripts/rollupWatch.ts",
"build:packages": "ts-node ./scripts/rollupBuild.ts",
"dev:backend": "cd backend && pnpm run start:dev",
"build:backend": "cd backend && pnpm run build",
"dev:frontend": "cd frontend && pnpm run dev",
"build:frontend": "cd frontend && pnpm run build",
"build:frontend_static": "cd frontend && pnpm run build:static",
"start:frontend": "cd frontend && pnpm run start",
"theme": "chakra-cli tokens ./frontend/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": {
"@babel/core": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/react": "^2.7.1",
"@chakra-ui/styled-system": "^2.9.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@swc/core": "1.3.80",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/lodash-es": "^4.17.9",
"@types/node": "^20.6.0",
"axios": "^0.27.2",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"framer-motion": "^6.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^3.0.2",
"project-tool": "git+ssh://[email protected]:MrWangJustToDo/project-tool.git",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^4.7.4"
}
}