forked from reg-viz/storycap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.47 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
{
"name": "storycap-root",
"private": true,
"scripts": {
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"doc:clihelp": "node scripts/cli-help.js",
"doc:toc": "node scripts/add-toc.js",
"doc": "yarn doc:clihelp && yarn doc:toc && prettier --write \"*.md\" \"packages/*/*.md\" --loglevel warn",
"typedoc:build": "lerna run typedoc",
"copy:misc:storycrawler": "cpy LICENSE packages/storycrawler",
"copy:misc:storycap": "cpy README.md CONTRIBUTING.md MIGRATION.md LICENSE packages/storycap",
"copy:misc": "yarn copy:misc:storycrawler && yarn copy:misc:storycap",
"build": "lerna run build && yarn doc && yarn copy:misc",
"build:pages": "yarn typedoc:build",
"format": "prettier --write \"packages/**/src/**/*\" \"packages/**/samples/**/*.ts\" \"scripts/**/*\" \"*.md\" \"packages/*/*.md\"",
"format:check": "prettier --check \"packages/**/src/**/*\" \"packages/**/samples/**/*.ts\" \"scripts/**/*\"",
"lint": "eslint \"packages/**/src/**/*.ts\"",
"test": "lerna run test",
"e2e": "bash e2e.sh",
"regression": "reg-suit run",
"deploy:ci": "lerna run clean && yarn build && lerna publish --yes from-package --dist-tag \"$(node ./scripts/get-dist-tag.js)\"",
"deploy:manual": "lerna run clean && yarn build && lerna publish",
"deploy:pages": "gh-pages -d dist-pages -m \"[ci skip]\"",
"linkall": "lerna exec --parallel yarn link",
"unlinkall": "lerna exec --parallel --bail=false yarn unlink",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg-viz/storycap.git"
},
"author": "tsuyoshiwada",
"contributors": [
"Yosuke Kurami"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg-viz/storycap/issues"
},
"homepage": "https://github.com/reg-viz/storycap#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"copy-dir": "1.3.0",
"cpy": "8.1.2",
"cpy-cli": "5.0.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.10.0",
"gh-pages": "5.0.0",
"husky": "8.0.3",
"lerna": "4.0.0",
"markdown-toc": "1.2.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"reg-keygen-git-hash-plugin": "0.12.2",
"reg-notify-github-plugin": "0.12.2",
"reg-publish-s3-plugin": "0.12.2",
"reg-suit": "0.12.2",
"typescript": "5.1.6",
"typescript-eslint-language-service": "5.0.5"
},
"workspaces": [
"packages/*"
]
}