-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "enterprise",
"version": "1.0.0",
"private": true,
"description": "",
"license": "ISC",
"author": "Terra Money <[email protected]>",
"type": "module",
"workspaces": [
"apps/**/*",
"indexers/**/*"
],
"scripts": {
"docker:enterprise-api": "docker build . -f apps/enterprise-api/Dockerfile -t payments/api",
"docker:enterprise-indexers": "docker build . -f indexers/enterprise/Dockerfile -t payments/indexers"
},
"dependencies": {
"@types/node": "^16.11.56",
"terrariums": "^1.1.9",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"devDependencies": {
"husky": "^8.0.3",
"jest-watch-typeahead": "2.1.1",
"json-schema-to-typescript": "^11.0.2",
"lint-staged": "^13.2.2",
"lorem-ipsum": "^2.0.8",
"prettier": "^2.8.8"
},
"packageManager": "[email protected]",
"lint-staged": {
"./src/{**/*,*}.{ts,tsx}": [
"prettier --write --single-quote --no-semi",
"eslint --max-warnings 0"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}