-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "habit-tracker-api",
"description": "A Node.js API for trackig daily habits and building streaks",
"version": "0.1.0",
"bin": {
"habit-tracker-api": "bin/habit-tracker-api.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sourabh-pisal/habit-tracker-api.git"
},
"scripts": {
"build": "eslint && tsc",
"lint": "eslint",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"upgrade-deps": "npx npm-check-updates -u && npm install"
},
"author": "Sourabh Pisal",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourabh-pisal/habit-tracker-api/issues"
},
"homepage": "https://github.com/sourabh-pisal/habit-tracker-api#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "22.10.2",
"aws-cdk": "2.173.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"aws-cdk-lib": "2.173.1",
"constructs": "^10.4.2"
}
}