-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
68 lines (68 loc) · 2.35 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
{
"name": "@cosmic-design/monorepo",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"changeset": "changeset",
"pre": "changeset pre enter beta",
"release": "changeset publish --registry=https://registry.npmjs.com",
"commit": "git-cz",
"format:check": "eslint '**/*.{js,ts,vue,svelte}' && prettier -c **/*.{css,md,json}",
"format": "prettier -w **/*.{css,md,json} && eslint '**/*.{js,ts,jsx,vue,svelte}' --fix",
"build": "npm run build:common && npm run build:util && npm run build:ui && npm run build:icon && npm run build:vue",
"build:util": "cd ./packages/util/ && npm run build",
"build:ui": "cd ./packages/ui/ && npm run build",
"build:common": "cd ./packages/common/ && npm run build",
"build:icon": "cd ./packages/icon/ && npm run build",
"build:vue": "cd ./packages/vue/ && npm run build && npm run build:docs",
"lint-staged": "lint-staged",
"alpha": "sh ./prepublish.sh"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "~5.10.0",
"@typescript-eslint/parser": "~5.10.0",
"cross-env": "^7.0.3",
"csso": "^5.0.3",
"eslint": "~8.7.0",
"eslint-plugin-svelte3": "~3.4.0",
"eslint-plugin-vue": "^8.5.0",
"git-cz": "~4.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"postcss": "^8.4.5",
"prettier": "~2.5.1",
"reflect-metadata": "^0.1.13",
"replace-in-file": "^6.3.2",
"rimraf": "^3.0.2",
"svelte": "^3.44.0",
"tslib": "^2.3.1",
"typed-css-modules": "^0.7.0",
"typescript": "^4.5.3",
"typescript-plugin-css-modules": "^3.4.0",
"vite": "^2.8.6",
"vue-eslint-parser": "^8.3.0",
"vue-tsc": "^0.31.4"
},
"compilerOptions": {
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}