forked from walinejs/waline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.25 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
{
"name": "waline",
"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",
"build": "npm run admin:build && npm run client:build",
"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",
"server:dev": "vercel dev ./example --listen 9090",
"docs:build": "npm run build --workspace=docs",
"docs:dev": "npm run dev --workspace=docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint --fix . && prettier --check --write .",
"lint:check": "eslint . && prettier --check .",
"prepare": "husky install",
"release": "ts-node -O {\\\"module\\\":\\\"commonjs\\\"} scripts/release",
"test": "jest -i"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write"
],
"*.{md,json,yml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@types/inquirer": "^7.3.2",
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.7",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "7.0.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-vue": "^7.12.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"inquirer": "^8.1.1",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"marked": "^2.1.3",
"ora": "^5.4.1",
"prettier": "^2.3.2",
"rollup": "^2.52.7",
"rollup-plugin-dts": "^3.0.2",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"sort-package-json": "^1.50.0",
"style-loader": "^3.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"vercel": "^23.0.1",
"vue-loader": "^16.3.0",
"webpack": "^5.42.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.3",
"webpack-merge": "^5.8.0"
}
}