-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "relabel",
"version": "0.3.0",
"repository": "ranyitz/relabel",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": "bin/relabel",
"files": [
"dist",
"bin"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"watch": "newsh --split 'yarn tsc --watch' && yarn pkg --watch",
"pkg": "ncc build build/cli.js -o dist",
"build": "yarn tsc && yarn pkg",
"lint": "eslint .",
"test": "jest",
"clean-build": "rm -rf build tsconfig.tsbuildinfo",
"createVersion": "np"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/fs-extra": "^9.0.4",
"@types/globby": "^9.1.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@vercel/ncc": "^0.27.0",
"arg": "^5.0.0",
"chalk": "^4.1.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.2.0",
"eslint-plugin-prettier": "^3.3.1",
"execa": "^5.0.0",
"expect": "^26.6.2",
"fs-extra": "^9.0.1",
"globby": "^11.0.2",
"husky": "^5.1.3",
"ink": "^3.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"newsh": "^0.7.4",
"np": "^7.4.0",
"prettier": "^2.2.1",
"react": "17",
"tempy": "^1.0.0",
"ts-node": "^9.1.1",
"typescript": "4.4.3"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}