-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
104 lines (104 loc) · 3.99 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": "root",
"version": "1.0.0",
"description": "Vue2do Org.",
"author": "Zheng (Zen) Huang (Wong) <[email protected]>",
"private": true,
"license": "UNLICENSED",
"scripts": {
"app:tsc": "yarn workspaces foreach -v --include @app/doc --include @app/ex --include @app/mock run tsc",
"coveralls": "echo \"No test specified\" && exit 0",
"debug": "node app/doc/script/dev",
"dev:D": "vue2do-build dev app/doc/project.config.js",
"dev:E": "vue2do-build dev app/ex/project.config.js",
"dev:M": "yarn workspaces foreach -v --include @vue2do/mock --include @app/mock run tsc && cross-env NODE_ENV=development vue2do-build dev ./app/mock/tsDist/project.config.js --root ./app/mock/",
"gql:gen": "graphql-codegen --config codegen.yml",
"lerna": "lerna",
"lerna:i": "lerna exec -- yarn install",
"lerna:rel": "lerna publish",
"lerna:test": "lerna run test",
"lerna:tsc": "lerna run tsc",
"mock.gql:M": "lerna run tsc && cross-env APOLLO_ENGINE_KEY=service:mockServer:LPVLKoXjQSJZfFYIl19zzw && vue2do-mock gql ./app/mock//tsDistmock.config.js --root ./app/mock/",
"mock.sw.dev:M": "yarn workspaces foreach -v --include @vue2do/mock --include @app/mock run tsc && cross-env NODE_ENV=development vue2do-mock sw dev ./app/mock/tsDist/mock.config.js --root ./app/mock/",
"mock.sw.prod:M": "yarn workspaces foreach -v --include @vue2do/mock --include @app/mock run tsc && vue2do-mock sw prod ./app/mock//tsDistmock.config.js --root ./app/mock/",
"prod:D": "vue2do-build prod app/doc/project.config.js",
"prod:M": "yarn run tsc && cross-env NODE_ENV=production vue2do-build prod ./app/mock//tsDistproject.config.js",
"prod.rel:D": "node ./app/doc/script/prod.js && apollo service:push",
"prod.rel.ci:D": "node ./app/doc/script/prod-ci.js",
"prod:E": "vue2do-build prod app/example/project.config.js",
"test:D": "vue2do-test unit ./app/doc/test.config.js",
"test:M": "yarn workspace @app/mock run test",
"test.ci:D": "node ./app/doc/script/test.ci.js",
"vue2do:tsc": "yarn workspaces foreach -v --include @vue2do/build --include @vue2do/component --include @vue2do/mock --include @vue2do/test run tsc"
},
"devDependencies": {
"@babel/types": "^7.9.0",
"@types/autoprefixer": "9.7.1",
"@types/node": "^13.9.5",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/composition-api": "^0.5.0",
"@vue2do/mock": "workspace:package/mock",
"@yarnpkg/cli": "^2.0.0-rc.31",
"@yarnpkg/core": "^2.0.0-rc.25",
"@yarnpkg/plugin-workspace-tools": "^2.0.0-rc.16",
"@yarnpkg/pnpify": "^2.0.0-rc.20",
"autoprefixer": "^9.7.5",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^9.4.2",
"micromatch": "^4.0.2",
"stylelint": "^11.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.11.1",
"vue": "^2.6.11",
"webpack": "^4.41.2"
},
"dependencies": {
"@commitlint/config-conventional": "^8.2.0",
"@vue2do/build": "workspace:package/build",
"chalk": "^3.0.0",
"commitlint": "^8.2.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"typescript": "^3.8.3",
"write": "^2.0.0"
},
"workspaces": [
"app/*",
"package/*"
],
"installConfig": {
"pnp": true
},
"dependenciesMeta": {
"@vue/composition-api": {
"unplugged": true
},
"eslint": {
"unplugged": true
},
"eslint-loader": {
"unplugged": true
},
"pug": {
"unplugged": true
},
"typescript": {
"unplugged": true
}
}
}