forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.31 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
{
"name": "vue-devtools",
"version": "6.5.0",
"description": "devtools for Vue.js!",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:vue2": "concurrently \"cd packages/shell-dev-vue2 && yarn dev\" \"cd packages/shell-host && yarn dev\"",
"dev:vue3": "concurrently \"cd packages/shell-dev-vue3 && yarn dev\" \"cd packages/shell-host && yarn dev\"",
"dev:chrome": "cd packages/shell-chrome && webpack --watch",
"dev:chrome:prod": "cd packages/shell-chrome && cross-env NODE_ENV=production webpack --watch",
"dev:electron": "cd packages/shell-electron && npm run dev",
"build": "lerna run build",
"build:watch": "lerna run build --scope @vue-devtools/app-backend* --scope @vue-devtools/shared-* --scope @vue/devtools-api && lerna run build:watch --stream --no-sort --concurrency 99",
"lint": "eslint --ext .js,.ts,.vue .",
"run:firefox": "web-ext run -s packages/shell-chrome -a dist -i src",
"zip": "node ./extension-zips.js",
"sign:firefox": "node ./sign-firefox.js",
"release": "npm run test && node release.js && npm run build && npm run zip && npm run pub",
"release:beta": "cross-env RELEASE_CHANNEL=beta npm run release && npm run sign:firefox",
"pub": "npm run pub:electron && npm run pub:api",
"pub:electron": "cd packages/shell-electron && npm publish",
"pub:api": "cd packages/api && npm publish",
"test": "npm run lint && npm run test:types:front",
"test:types:front": "tsc --noEmit",
"test:e2e": "cross-env PORT=4040 start-server-and-test dev:shell http://localhost:4040 test:e2e:run",
"test:e2e:run": "cypress run --config baseUrl=http://localhost:4040",
"test:open": "cypress open --config baseUrl=http://localhost:8100",
"docs:dev": "cd packages/docs && vitepress dev src",
"docs:build": "cd packages/docs && vitepress build src",
"docs:serve": "cd packages/docs && vitepress serve src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-devtools.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-devtools/issues"
},
"homepage": "https://github.com/vuejs/vue-devtools#readme",
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.4",
"@types/chrome": "^0.0.139",
"@types/speakingurl": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"archiver": "^5.3.0",
"autoprefixer": "^9.1.5",
"concurrently": "^5.1.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.0",
"eslint": "^7.26.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^6.0.0",
"execa": "^4.0.3",
"inquirer": "^6.2.0",
"lerna": "^4.0.0",
"postcss-nested": "^4.2.1",
"rimraf": "^3.0.2",
"semver": "^5.5.1",
"start-server-and-test": "^1.7.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"vue-loader": "^15.9.0",
"webpack-dev-server": "^4.0.0-beta.0"
},
"resolutions": {
"cypress": "=3.4.1",
"webpack-dev-server": "=4.0.0-rc.0"
},
"engines": {
"node": ">=8.10"
}
}