-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.2 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.2 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@stackmate/stackmate",
"version": "0.3.4",
"description": "Stackmate - Infrastructure for busy developers",
"homepage": "https://stackmate.io",
"keywords": [
"stackmate",
"aws",
"cloud",
"terraform",
"provisioning",
"deployment",
"infrastructure-as-code"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stackmate-io/stackmate"
},
"author": {
"name": "Fotis Alexandrou (@falexandrou)",
"url": "https://www.falexandrou.com"
},
"bugs": {
"url": "https://github.com/stackmate-io/stackmate/issues"
},
"bin": "dist/bin/cli.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"dependencies": {
"@cdktf/cli-core": "^0.20.3",
"@cdktf/provider-aws": "^19.6.0",
"@cdktf/provider-local": "^10.0.0",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"cdktf": "^0.20.3",
"constructs": "^10.3.0",
"ip-address": "^9.0.5",
"lodash": "^4.17.21",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dpdm": "^3.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-transform-paths": "^3.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run build:project && npm run build:aliases",
"build:aliases": "tsc-alias -p tsconfig.build.json",
"build:project": "tsc -p ./tsconfig.build.json",
"check:build": "tsc -p ./tsconfig.build.json --noEmit",
"check:all": "tsc -p ./tsconfig.json --noEmit",
"check:circular": "dpdm -T --no-warning --no-tree ./src/**/* ./tests/**/*",
"cli:dev": "ts-node -r tsconfig-paths/register bin/cli.ts",
"cli:test": "NODE_ENV=test npm run cli:dev",
"clean": "rimraf dist/*",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"postinstall": "npm run cloud:constraints",
"prepublish": "npm run cloud:constraints",
"test": "NODE_ENV=test jest --verbose --useStderr --detectOpenHandles --silent=false --maxWorkers=1 --testTimeout=60000000",
"test:unit": "npm run test -- --testRegex=src/.*.test.ts",
"test:e2e": "npm run test -- --testRegex=e2e/.*.test.ts",
"test:local": "AWS_PROFILE=engine-tests-local npm run test --",
"test:watch": "npm run test --watchAll",
"cloud:constraints": "AWS_PROFILE=engine-tests-local ts-node -r tsconfig-paths/register utilities/clouds/index.ts",
"schema:export": "ts-node -r tsconfig-paths/register utilities/schema/index.ts"
},
"volta": {
"node": "21.4.0"
}
}