-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1003 Bytes
/
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
{
"private": true,
"version": "0.4.0",
"scripts": {
"generate-api-clients": "sh ./hack/generate-api-clients.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "(is-ci || husky) && ./hack/postinstall.sh",
"format:ts": "prettier --write ./**/*.{ts,tsx}",
"format:py": "black .",
"format:all": "npm run format:ts && npm run format:py",
"exec-command-example": "npx dotenvx run -f .env.local -- npx ts-node examples/ts/exec-command/src/"
},
"workspaces": [
"packages/*",
"examples/*"
],
"author": "",
"license": "ISC",
"dependencies": {
"@dotenvx/dotenvx": "^1.25.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.15.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.py": [
"black"
]
}
}