-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "kma-score-serverless",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "sst dev",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky install",
"db:push": "pnpm recursive run db:push",
"db:migrate-gen": "pnpm recursive run db:migrate-gen",
"db:migrate": "pnpm recursive run db:migrate",
"db:migrate-drop": "pnpm recursive run db:migrate-drop"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@tsconfig/node18": "^18.2.2",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"aws-cdk-lib": "2.110.1",
"constructs": "10.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"sst": "^2.38.7",
"tsx": "^4.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"fs-extra": "^11.1.1",
"lodash": "^4.17.21"
},
"lint-staged": {
"*.ts": [
"pnpm lint --fix",
"git add *"
]
}
}