-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.61 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
{
"name": "muban-devtools",
"version": "1.0.0-beta.2",
"description": "devtools for Muban!",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:shell": "cross-env PORT=8100 cd packages/shell-dev && webpack-dev-server --inline --hot --no-info",
"dev:shell-muban": "concurrently \"cd packages/shell-dev-muban && yarn dev\" \"cd packages/shell-host && yarn dev\"",
"dev:chrome": "cd packages/shell-chrome && webpack --watch --hide-modules",
"dev:chrome:prod": "cd packages/shell-chrome && cross-env NODE_ENV=production webpack --watch --hide-modules",
"build": "lerna run build",
"build:watch": "lerna run build --scope @muban-devtools/* --scope @muban/devtools-api && lerna run build:watch --stream --no-sort --concurrency 99",
"lint": "eslint --ext .js,.ts,.vue .",
"zip": "npm run zip:chrome",
"zip:chrome": "cd packages && zip -r -FS ../dist/muban-devtools.zip shell-chrome -x *src/* -x *webpack.config.js -x *node_modules/*",
"release": "node release.js && npm run build && npm run zip",
"release:beta": "cross-env RELEASE_CHANNEL=beta npm run release",
"test": "npm run lint",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mubanjs/muban-devtools.git"
},
"author": "Arjan van Wijk",
"license": "MIT",
"bugs": {
"url": "https://github.com/mubanjs/muban-devtools/issues"
},
"homepage": "https://github.com/mubanjs/muban-devtools#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@vue/eslint-config-standard": "^5.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"autoprefixer": "^9.1.5",
"concurrently": "^5.1.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.0",
"eslint": "^6.0.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.0",
"execa": "^4.0.3",
"inquirer": "^6.2.0",
"lerna": "^3.22.0",
"postcss-nested": "^4.2.1",
"rimraf": "^3.0.2",
"semver": "^5.5.1",
"start-server-and-test": "^1.7.1",
"tailwindcss": "^1.7.5",
"tailwindcss-dark-mode": "^1.1.6",
"vue-loader": "^15.9.0"
},
"resolutions": {
"cypress": "=3.4.1"
},
"engines": {
"node": ">=8.10"
}
}