-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "cdk",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"storybook": "cd storybook && yarn start",
"clean": "lerna clean -y",
"docs": "cd docs && yarn dev",
"build-packages": "lerna run prepublishOnly",
"docs:build": "cd storybook && yarn build && cd ../docs && yarn build && mkdir dist/storybook && cp -R ../storybook/dist/* dist/storybook",
"docs:publish": "node docs/tools/publish.js",
"test:unit": "vue-cli-service test:unit --no-collect-coverage --runInBand",
"test:unit:watch": "vue-cli-service test:unit --no-collect-coverage --watch",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e:ci": "yarn test:e2e --headless",
"poor-ci": "yarn test:unit && yarn lint && yarn test:e2e:ci && yarn docs:build",
"lint": "eslint --ext .js,.vue packages examples storybook e2e",
"postinstall": "lerna bootstrap --concurrency 1 --use-workspaces && yarn build-packages"
},
"resolutions": {
"cypress": "5.2.0"
},
"workspaces": [
"packages/*",
"docs",
"storybook",
"e2e",
"examples",
"lib/*",
"vuepress-plugins/*"
],
"devDependencies": {
"jest": "^26.6.3",
"vuepress": "^1.7.1",
"@babel/core": "^7.10.3",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-e2e-cypress": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-plugin-unit-jest": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"babel-jest": "^26.0.1",
"cross-env": "^7.0.0",
"cypress": "^5.2.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint": "^6.8.0",
"lerna": "^3.22.1",
"postcss": "^8.1.1",
"prettier": "^2.2.1",
"rollup-plugin-vue": "^6.0.0",
"@vue/compiler-sfc": "^3.0.5",
"rollup": "^2.36.0",
"vue-router": "^3.3.4",
"vue-template-compiler": "^2.6.12",
"vue": "^2.6.12"
}
}