-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 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
37
38
39
40
41
{
"name": "saas",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"compile": "swc main.ts --out-file dist/main.js & swc imports/providers/**/*.ts -d dist/imports/",
"build": "tsc --build --clean",
"synth": "cdktf synth",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"cdktf:get": "cdktf get",
"cdktf:synth": "cdktf synth",
"cdktf:deploy": "cdktf deploy --auto-approve '*-dev'",
"cdktf:publish": "yarn run cdktf:synth && yarn run cdktf:deploy",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=16.0"
},
"dependencies": {
"cdktf": "^0.16.3",
"constructs": "^10.2.39"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.61",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}