-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "patch-safe-deployments",
"version": "0.0.2",
"main": "build/intex.js",
"author": "Nikita Zasimuk <[email protected]>",
"license": "MIT",
"private": true,
"type": "commonjs",
"scripts": {
"run:patching": "yarn build && node build/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "rimraf ./build && tsc && tsc-alias",
"check:ts": "tsc --noEmit",
"lint": "eslint --max-warnings 0 ./src --ext .ts"
},
"dependencies": {
"fs-extra": "^11.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^4.9.5"
}
}