-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
88 lines (88 loc) · 3.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "hexon",
"version": "0.12.8",
"private": true,
"author": "winwin2011 <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"release": "standard-version --releaseCommitMessageFormat='chore: release v{{currentTag}}' && pnpm build && git add . && git commit -m 'chore: build released'",
"prerelease": "standard-version --releaseCommitMessageFormat='chore: release v{{currentTag}}' --prerelease && pnpm build && git add . && git commit -m 'chore: build released'",
"build": "pnpm -r exec npm run build",
"setup": "pnpm install -P && cd ./server-scripts && node ./bin/index.js install",
"script": "cd ./server-scripts && node ./bin/index.js script",
"resetpwd": "cd ./server-scripts && node ./bin/index.js resetpwd",
"start": "cd ./server && pnpm start",
"prd": "cd ./server && pnpm prd",
"dev-init": "pnpm install && pnpm run build && cd ./server-scripts && node ./bin/index.js install",
"dev": "concurrently -p [{name}] -n 'server,client' -c 'green.bold,blue.bold' 'cd ./server && pnpm dev' 'cd ./client && pnpm dev' ",
"test:fresh-install": "bash ./scripts/fresh_installation.test.sh"
},
"devDependencies": {
"@types/animejs": "^3.1.12",
"@types/basic-auth": "^1.1.8",
"@types/color": "^3.0.6",
"@types/color-convert": "^2.0.3",
"@types/crypto-js": "^4.2.2",
"@types/debug": "^4.1.12",
"@types/faker": "^6.6.9",
"@types/hexo": "^3.8.12",
"@types/http-errors": "^2.0.4",
"@types/inquirer": "^8.2.10",
"@types/jest": "^27.5.2",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^3.3.1",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-compress": "^4.0.6",
"@types/koa-logger": "^3.1.5",
"@types/koa-mount": "^4.0.5",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/koa2-cors": "^2.0.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^17.0.45",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.10",
"@unocss/preset-attributify": "^0.33.5",
"@unocss/preset-uno": "^0.33.5",
"@unocss/reset": "^0.33.5",
"@unocss/transformer-directives": "^0.33.5",
"@vicons/fluent": "^0.12.0",
"@vicons/utils": "^0.1.4",
"@vitejs/plugin-vue": "^2.3.4",
"@vue/compiler-sfc": "^3.4.27",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"esbuild": "^0.14.54",
"esbuild-plugin-node-externals": "^0.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"faker": "^6.6.6",
"jest": "^27.5.1",
"jsdom": "^19.0.0",
"less": "^4.2.0",
"less-loader": "^10.2.0",
"naive-ui": "^2.38.2",
"nodemon": "^2.0.22",
"picocolors": "^1.0.1",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"standard-version": "^9.5.0",
"stylus": "^0.57.0",
"ts-jest": "^27.1.5",
"tsconfig-paths": "^3.15.0",
"typescript": "^4.9.5",
"unocss": "^0.33.5",
"vite": "^2.9.18",
"vite-plugin-pages": "^0.22.0",
"vite-plugin-vue-layouts": "^0.6.0",
"vue-tsc": "^2.0.19"
}
}