-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "entity-cms",
"version": "0.0.1",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/types/index.d.ts",
"repository": "https://github.com/benzsuankularb/entity-cms",
"files": [
"*"
],
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^7.5.0",
"esbuild": "^0.15.13",
"eslint": "^8.26.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"setup": "npx husky install && npx husky add .husky/pre-commit \"yarn style && git add --all\"",
"style": "eslint . --ext .ts && prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest --runInBand",
"build": "yarn build:main && yarn build:types",
"build:types": "tsc --preserveWatchOutput",
"build:main": "node esbuild.js"
},
"packageManager": "[email protected]",
"dependencies": {
"trpc": "^0.11.3",
"zod": "^3.20.6"
}
}