-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "@xarples/oxygen-project",
"version": "0.0.0",
"description": "Xarples design system",
"main": "index.js",
"repository": "https://wwww.github.com/xarples/oxygen",
"author": "xarples",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"docs:dev": "vitepress",
"docs:build": "nuxt build",
"docs:start": "nuxt start",
"docs:generate": "nuxt generate",
"build": "yarn build:ssr && yarn build:es && yarn build:unpkg",
"build:ssr": "cross-env NODE_ENV=production rollup --config rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config rollup.config.js --format iife",
"build:watch": "cross-env NODE_ENV=production rollup --watch --config rollup.config.js",
"lerna:bootstrap": "lerna bootstrap",
"lerna:version": "lerna version prerelease --preid alpha",
"lerna:prepublish": "lerna run prepublish",
"lerna:publish": "lerna publish from-git"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@testing-library/dom": "^7.24.3",
"@testing-library/vue": "^5.0.4",
"@vue/compiler-sfc": "^3.0.0",
"@vue/test-utils": "^2.0.0-beta.5",
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lerna-get-packages": "^1.0.0",
"minimist": "^1.2.5",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0-beta.10",
"typescript": "^4.0.3",
"vitepress": "^0.6.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}