-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
119 lines (119 loc) · 4.48 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "dash4",
"version": "0.9.3",
"private": false,
"description": "The dashboard for developers",
"keywords": [
"browser terminal",
"dash4",
"dashboard",
"plugins",
"productivity",
"terminal",
"tools",
"web dashboard",
"webdash"
],
"repository": "https://github.com/smollweide/dash4",
"license": "MIT",
"author": "Simon Mollweide <[email protected]>",
"scripts": {
"audit": "npm-run-all audit:*",
"audit:root": "npm audit",
"bootstrap": "npx lerna bootstrap --hoist --strict",
"postbootstrap": "node ./node_modules/node-sass/scripts/install.js",
"build": "npm-run-all build-lib build-build build-dist build-plugins",
"build-build": "lerna run build:build",
"build-dist": "lerna run build:dist",
"build-lib": "lerna run build:lib",
"build-plugins": "npm-run-all build-plugins:*",
"build-plugins:p1": "lerna run build --scope @dash4/plugin-npm-scripts",
"build-plugins:p2": "lerna run build --scope @dash4/plugin-terminal",
"build-plugins:p3": "lerna run build --scope @dash4/plugin-code-coverage",
"build-plugins:p4": "lerna run build --scope @dash4/plugin-readme",
"build-plugins:p5": "lerna run build --scope @dash4/plugin-dependencies",
"build-plugins:p6": "lerna run build --scope @dash4/plugin-actions",
"clean": "npx npm-run-all clean:lerna clean:installed clean:build",
"clean-install": "npm-run-all clean bootstrap build test start",
"clean:build": "npx rimraf packages/*/build plugins/*/build packages/*/dist plugins/*/dist packages/react-xterm/lib **/coverage **/coverage-server",
"clean:installed": "npx rimraf node_modules package-lock.json lerna-debug.log npm-debug.log **/package-lock.json",
"clean:lerna": "npx lerna clean --yes",
"cz": "git-cz",
"lint": "npm-run-all lint:*",
"lint:license": "license-checker --production --summary --exclude \"Apache-2.0, BSD, ISC, LGPL, MIT, MPL\" --failOn \"AGPL; EPL; GPL\"",
"lint:ts": "eslint . --ext .js,.jsx,.ts,.tsx",
"postboostrap": "node ./node_modules/node-sass/scripts/install.js",
"prettier": "prettier --write \"**/*.*(js|jsx|ts|tsx|json)\"",
"publish": "node ./bin/publish.js",
"release": "node ./bin/release.js",
"sort-package-json": "sort-package-json packages/*/package.json plugins/*/package.json package.json",
"start": "node ./packages/server/bin/index.js --port=4000",
"test": "npm-run-all test-packages:* test-plugins",
"test-packages:cli": "lerna run test --scope @dash4/cli",
"test-packages:client": "lerna run test --scope @dash4/client",
"test-packages:config": "lerna run test --scope @dash4/config",
"test-packages:log": "lerna run test --scope @dash4/log",
"test-packages:react-xterm": "lerna run test --scope @dash4/react-xterm",
"test-packages:server": "lerna run test --scope @dash4/server",
"test-packages:terminal-emulator": "lerna run test --scope @dash4/terminal-emulator",
"test-packages:ui": "lerna run test --scope @dash4/ui",
"test-plugins": "lerna run test --scope @dash4/plugin-*",
"update": "node ./bin/update.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run sort-package-json",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@namics/commitlint-conventional-changelog"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --list-different --write"
]
},
"config": {
"commitizen": {
"path": "@namics/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@namics/commitlint-conventional-changelog": "1.1.18",
"@namics/cz-conventional-changelog": "2.0.2",
"@namics/eslint-config": "9.0.2",
"@namics/prettier-config": "1.1.0",
"@namics/ts-config": "1.0.1",
"chalk": "4.1.0",
"commitizen": "4.2.2",
"conventional-changelog": "3.1.24",
"conventional-recommended-bump": "6.0.11",
"enquirer": "2.3.6",
"eslint": "7.15.0",
"eslint-plugin-import": "2.22.1",
"execa": "5.0.0",
"fs-extra": "9.0.1",
"globby": "11.0.1",
"husky": "4.3.5",
"latest-version": "5.1.0",
"lerna": "3.22.1",
"license-checker": "25.0.1",
"lint-staged": "10.5.3",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"ora": "5.1.0",
"prettier": "2.2.1",
"sort-package-json": "1.48.0",
"typescript": "3.9.5"
},
"engines": {
"node": ">=10"
}
}