-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 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
{
"name": "dx-scripts",
"version": "0.1.2",
"description": "A collection of utility scripts for developer experience and productivity.",
"repository": "[email protected]:DawChihLiou/dx-scripts.git",
"author": "DawChihLiou",
"license": "MIT",
"private": false,
"files": [
"bin"
],
"keywords": [
"cli",
"node",
"typescript",
"npm",
"yarn",
"dx",
"developer experience",
"scripts",
"productivity"
],
"bin": {
"dx-scripts": "./bin/index.js"
},
"scripts": {
"build": "run-s clean tsc chmod",
"start": "node bin/index.js",
"dev": "ts-node",
"clean": "rimraf ./bin",
"chmod": "chmod u+x ./bin/index.js",
"tsc": "tsc",
"lint": "eslint '**/*.{js,ts}' --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"yarn prettier"
]
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"cross-spawn": "^7.0.3",
"lighthouse": "^9.1.0",
"sharp": "^0.29.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node": "^16.11.7",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}