This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.67 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
{
"name": "@storybook/bench",
"version": "0.7.5",
"license": "MIT",
"author": "Michael Shilman",
"main": "dist/index.js",
"module": "dist/sb-bench.esm.js",
"typings": "dist/index.d.ts",
"bin": {
"sb-bench": "./bin/index.js",
"sb-upload": "./bin/upload.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsdx build --target node --format cjs",
"lint": "tsdx lint",
"prepare": "yarn build",
"release": "yarn build && auto shipit",
"start": "tsdx watch",
"test": "tsdx test"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@google-cloud/bigquery": "^5.2.0",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@types/fs-extra": "^9.0.13",
"commander": "^5.1.0",
"cross-spawn": "^7.0.3",
"du": "^1.0.0",
"exectimer": "^2.2.2",
"fs-extra": "^10.1.0",
"jsonexport": "^3.0.1",
"lodash": "^4.17.19",
"playwright": "^1.24.2",
"pretty-bytes": "^5.3.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@auto-it/released": "^10.32.6",
"@types/cross-spawn": "^6.0.2",
"@types/hapi__hapi": "^20.0.12",
"@types/hapi__inert": "^5.2.3",
"@types/lodash": "^4.14.157",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^3.0.1",
"auto": "^10.3.0",
"husky": "^4.2.5",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}