-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@openapi-io-ts/root",
"private": true,
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"build": "pnpm run build -r",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"examples:generate": "pnpm run generate --filter ./examples",
"examples:type-check": "pnpm run type-check --filter ./examples",
"sanity-check": "pnpm build && pnpm lint && pnpm test && pnpm examples:generate && pnpm examples:type-check",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-fp-ts": "^0.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.11.8",
"husky": "^3.1.0",
"io-ts": "^2.2.16",
"jest": "^27.4.7",
"lint-staged": "^10.5.4",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{js,css,json,md,yml,yaml}": [
"prettier --write"
]
},
"version": "0.1.0"
}