-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "registry",
"version": "2.0.1",
"bin": {
"registry": "bin/index.ts"
},
"scripts": {
"lint": "npx eslint .",
"build": "npx tsc",
"synth": "JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION=1 npx cdk synth",
"deploy": "JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION=1 npx cdk deploy --profile sunsreddit-net --all --ci true || exit 1",
"destroy": "JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION=1 npx cdk destroy --profile sunsreddit-net --all --force || exit 1",
"start": "npm run deploy",
"test": "npx jest --coverage",
"watch": "npx tsc -w"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.11",
"@types/node": "20.11.6",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"aws-cdk": "2.124.0",
"dotenv": "^16.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"aws-cdk-lib": "2.124.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}