-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 KB
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
{
"name": "stapp",
"private": true,
"engines": {
"node": ">=8.0.0"
},
"license": "Apache-2.0",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test && npm run test:size",
"test:size": "size-limit",
"test:ci": "lerna run test:ci && npm run test:size",
"docs": "rimraf _book && npm run docs:toc && npm run docs:move && npm run docs:book",
"docs:toc": "doctoc docs/README.md docs/guides/. docs/core/. docs/modules/. --notitle --github",
"docs:move": "cp docs/README.md ./",
"docs:book": "gitbook install && gitbook build",
"docs:publish": "npm run docs && gh-pages -d _book",
"update-all-select": "lernaupdate",
"update-all": "node scripts/update.js && npm run bootstrap",
"pretest": "npm run build",
"precommit": "lint-staged",
"cz": "git-cz",
"prepush": "npm run test",
"preversion": "npm run build"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"prettier --write --config .prettierrc",
"git add"
],
"./README.md": [
"doctoc --notitle --github --maxlevel 3",
"git add"
]
},
"devDependencies": {
"cash-cp": "^0.2.0",
"cash-mv": "^0.2.0",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"doctoc": "^1.3.1",
"gh-pages": "^2.0.1",
"gitbook-cli": "^2.3.2",
"glob": "^7.1.3",
"husky": "^2.0.0",
"lerna": "^3.4.3",
"lerna-update-wizard": "^0.12.0",
"lint-staged": "^8.0.5",
"npm-check-updates": "^3.1.4",
"lint-staged": "^9.0.0",
"npm-check-updates": "^2.14.3",
"p-series": "^2.1.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"size-limit": "^1.0.1",
"webpack": "^4.26.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-my-toolbar": "^0.6.5"
}
}