-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "run-js-with-npx-from-gist",
"version": "1.0.0",
"bin": "./index.js",
"scripts": {
"build": "tsc",
"prettier": "prettier \"**/**/*.{js,jsx,ts,tsx,json}\" --config .prettierrc.js",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"eslint:fix": "yarn eslint --fix",
"lint:fix": "yarn eslint --fix && yarn prettier --write"
},
"dependencies": {
"chalk": "^4.1.2",
"execa": "^5.0.0",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"get-yarn-workspaces": "^1.0.2",
"json5": "^2.2.3",
"load-json-file": "^6.0.1",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"prettier": "^2.8.8",
"replace-in-path": "^1.1.0",
"semver": "^7.6.3",
"ts-morph": "^12.2.0",
"ts-node": "^10.8.1",
"typescript": "4.9.5",
"write-json-file": "^4.0.0",
"yargs": "^17.2.1",
"yesno": "^0.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.17.12",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-standard": "^5.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
}
}