-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@microsite/root",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"benchmark/*",
"site"
],
"scripts": {
"postinstall": "lerna link",
"prebenchmark": "yarn build:core",
"benchmark": "node scripts/benchmark",
"prebenchmark:microsite": "yarn build:core",
"benchmark:microsite": "node scripts/benchmark --suite microsite-simple",
"bootstrap:ci": "npx lerna bootstrap --ci",
"build": "npx lerna run build --scope='microsite' --scope='create-microsite' --sort",
"postbuild": "lerna link",
"build:core": "yarn workspace microsite run build",
"postbuild:core": "lerna link",
"prebuild:examples": "node scripts/generate-examples",
"build:examples": "yarn build:core && lerna run build --scope='@example/*'",
"postbuild:examples": "node scripts/copy-examples"
},
"devDependencies": {
"@changesets/cli": "^2.11.2",
"fs-extra": "^9.0.1",
"get-folder-size": "^2.0.1",
"glob-size": "^1.0.1",
"gzip-cli": "^1.2.0",
"husky": "^4.3.0",
"lerna": "^4.0.0",
"lighthouse": "^7.2.0",
"lint-staged": "^10.4.2",
"nice-bytes": "^1.1.0",
"prettier": "^2.1.2",
"pretty-ms": "^7.0.1",
"puppeteer": "^8.0.0",
"typescript": "^4.1.2"
},
"volta": {
"node": "12.21.0",
"yarn": "1.22.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,css,md,json}": "prettier --write"
}
}