forked from walinejs/waline
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 4.26 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
122
123
124
125
126
127
128
129
130
{
"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 rollup --workspace=@waline/client && npm run style --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 .",
"lint:style": "stylelint packages/*/src/**/*.scss --fix",
"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.9",
"@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.3",
"@commitlint/config-conventional": "^16.2.1",
"@fancyapps/ui": "^4.0.26",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "10.0.0",
"apidoc": "^0.51.1",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"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.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-vue": "^8.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"inquirer": "^8.2.2",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.8",
"marked": "^4.0.14",
"npm-check-updates": "^12.5.9",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"rollup": "^2.70.2",
"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.50.0",
"sass-loader": "^12.6.0",
"sort-package-json": "^1.55.0",
"style-loader": "^3.3.1",
"stylelint": "^14.6.0",
"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": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"url-loader": "^4.1.1",
"vercel": "^24.1.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"
},
"overrides": {
"docs": {
"@waline/client": "file:./packages/client"
}
}
}