-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "sheets-server",
"type": "module",
"version": "0.1.0",
"description": "Server infrastructure for Sheets",
"scripts": {
"deploy:development": "cdk deploy 'sheets-development/**'",
"deploy:staging": "cdk deploy 'sheets-staging/**'",
"deploy:production": "cdk deploy 'sheets-production/**'",
"db:check": "drizzle-kit check:pg",
"db:introspect": "drizzle-kit introspect:pg",
"db:migration:down": "drizzle-kit drop",
"db:migration:generate": "drizzle-kit generate:pg",
"db:migration:up": "drizzle-kit up:pg",
"db:push": "drizzle-kit push:pg",
"lint": "eslint .",
"prepare": "husky",
"prettify": "prettier --write .",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage"
},
"author": "Jhonny Moreira <jobs at jhonny dot codes>",
"dependencies": {
"@aws-sdk/client-s3": "^3.565.0",
"@aws-sdk/client-secrets-manager": "^3.565.0",
"@aws-sdk/client-sqs": "^3.565.0",
"@aws-sdk/s3-presigned-post": "^3.565.0",
"csv-parse": "^5.5.5",
"drizzle-orm": "^0.30.9",
"drizzle-zod": "^0.5.1",
"jose": "^5.2.4",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"nanoid": "^5.0.7",
"postgres": "^3.4.4",
"vitest-mock-extended": "^1.3.1",
"winston": "^3.13.0",
"zod": "^3.23.5"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@total-typescript/shoehorn": "^0.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/aws-lambda": "^8.10.137",
"@types/lodash.chunk": "^4.2.9",
"@types/lodash.get": "^4.4.9",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.2",
"aws-cdk": "^2.139.0",
"aws-cdk-lib": "^2.139.0",
"aws-sdk-client-mock": "^4.0.0",
"constructs": "^10.3.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.20.17",
"esbuild": "^0.20.2",
"eslint": "^9.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.2"
}
}