-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "parcel-benchmark-action",
"version": "1.0.0",
"main": "index.js",
"author": "Jasper De Moor <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf .tmp .parcel-cache github node_modules yarn.lock",
"build": "tsc",
"watch": "tsc -w",
"start": "NODE_ENV=development ts-node src/index",
"action-start": "IS_GH_ACTION=true ts-node src/index",
"docker-build": "docker build -t parcel/benchmark .",
"docker-start": "docker run -i -t parcel/benchmark",
"format": "prettier --write \"./**/*.{ts,js,json,md,mdx}\"",
"lint": "eslint \"./**/*.{ts,js}\" --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/fs-extra": "^9.0.5",
"@types/node": "^14.14.12",
"@types/node-fetch": "^2.5.7",
"@types/url-join": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^12.0.0",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"node-fetch": "^2.6.1",
"p-queue": "^6.6.2",
"pretty-bytes": "^5.4.1",
"pretty-ms": "^7.0.1",
"url-join": "^4.0.1"
}
}