forked from walinejs/waline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "waline",
"version": "0.0.1",
"private": true,
"workspaces": [
"docs/",
"example/",
"packages/*"
],
"scripts": {
"admin:analyze": "npm run analyze --workspace=@waline/admin",
"admin:build": "npm run build --workspace=@waline/admin",
"admin:dev": "npm run dev --workspace=@waline/admin",
"apidoc": "apidoc -i packages/server/src/logic -o docs/src/.vuepress/dist/api",
"build": "npm run admin:build && npm run client:build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "lerna run clean --stream",
"client:analyze": "npm run analyze --workspace=@waline/client",
"client:build": "npm run build:normal --workspace=@waline/client && npm run build:no-style --workspace=@waline/client && npm run build:dts --workspace=@waline/client",
"client:dev": "npm run dev --workspace=@waline/client",
"docs:build": "npm run build --workspace=docs && npm run apidoc",
"docs:dev": "npm run dev --workspace=docs",
"lint": "eslint --fix . && prettier --check --write .",
"lint:check": "eslint . && prettier --check .",
"packages:check-update": "ncu --deep --timeout 600000",
"packages:update": "ncu -u --deep --timeout 600000 && npm install --legacy-peer-deps && npm upgrade --legacy-peer-deps",
"prepare": "husky install",
"release": "ts-node -O {\\\"module\\\":\\\"commonjs\\\"} scripts/release",
"server:dev": "vercel dev ./example --listen 9090",
"test": "jest -i"
},
"lint-staged": {
"*.{md,json,yml,js,vue}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@fancyapps/ui": "^4.0.26",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "10.0.0",
"apidoc": "^0.50.4",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-vue": "^8.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"marked": "^4.0.12",
"npm-check-updates": "^12.5.0",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"rollup-plugin-dts": "^4.1.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"sort-package-json": "^1.54.0",
"style-loader": "^3.3.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"vercel": "^24.0.0",
"vue-loader": "^17.0.0",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"apidoc": {
"title": "Waline API Documentation"
}
}