forked from walinejs/waline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.86 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
112
113
114
115
116
117
118
119
120
121
{
"name": "waline",
"version": "0.0.1",
"private": true,
"scripts": {
"admin:analyze": "npm --dir=packages/admin run analyze",
"admin:build": "pnpm --dir=packages/admin run build",
"admin:dev": "pnpm --dir=packages/admin run dev",
"apidoc": "apidoc -i packages/server/src/logic -o docs/src/.vuepress/dist/api",
"build": "pnpm admin:build && pnpm client:build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "lerna run clean --stream",
"client:build": "pnpm --dir=packages/client run rollup && pnpm --dir=packages/client run style",
"client:dev": "pnpm --dir=packages/client run dev",
"docs:build": "pnpm --dir=docs run build && pnpm apidoc",
"docs:dev": "pnpm --dir=docs run dev",
"lint": "eslint --fix . && prettier --check --write .",
"lint:check": "eslint . && prettier --check .",
"lint:style": "stylelint packages/*/src/**/*.scss --fix",
"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.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@fancyapps/ui": "^4.0.26",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "10.0.0",
"apidoc": "^0.51.1",
"babel-jest": "^28.0.3",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-vue": "^8.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"inquirer": "^8.2.4",
"jest": "^28.0.3",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"marked": "^4.0.15",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"rollup": "^2.71.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-styles": "4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"sort-package-json": "^1.57.0",
"style-loader": "^3.3.1",
"stylelint": "^14.8.2",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"ts-jest": "^28.0.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"vercel": "^24.2.0",
"vue-loader": "^17.0.0",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"apidoc": {
"title": "Waline API Documentation"
},
"pnpm": {
"overrides": {
"@waline/client": "workspace:*"
}
}
}