-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "atlas",
"version": "0.0.1",
"description": "technology stack focused on value generation",
"main": "index.js",
"scripts": {
"postinstall": "npm run install:integration",
"install:integration": "(cd integration/hello-world && npm install) && (cd integration/nestjs-application && npm install)",
"lint": "concurrently 'npm run lint:packages' 'npm run lint:spec'",
"lint:spec": "eslint 'packages/**/**.spec.ts'",
"lint:packages": "eslint 'packages/**/**.ts' --ignore-pattern 'packages/**/*.spec.ts'",
"test": "jest packages",
"test:integration": "jest integration",
"clean": "find ./packages -name '*.d.ts' -delete && find ./packages -name '*.js' -delete",
"build": "npm run build:packages",
"build:integration": "tsc --build integration/tsconfig.json",
"build:packages": "gulp build --dist node_modules/@atlas-org && npm run copy:integration",
"copy:integration": "cp -R node_modules/@atlas-org integration/hello-world/node_modules && cp -R node_modules/@atlas-org integration/nestjs-application/node_modules",
"build:prod": "gulp build",
"prerelease": "gulp copy-misc",
"publish": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --force-publish --no-private --exact -m \"chore(@atlas-org) publish %s release\"",
"database:migration": "node node_modules/@atlas-org/database/cli/index.js",
"deploy": "cdk deploy --outputs-file ./integration/hello-world/env.json --all",
"destroy": "npm run atlas:destroy:application && npm run atlas:destroy:infrastructure",
"coverage": "jest packages/ --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlas-cli/atlas.git"
},
"keywords": [
"atlas",
"nestjs",
"nest",
"angular",
"framework",
"stack",
"atlascli"
],
"author": "AtlasCLI",
"license": "ISC",
"bugs": {
"url": "https://github.com/atlas-cli/atlas/issues"
},
"homepage": "https://github.com/atlas-cli/atlas#readme",
"devDependencies": {
"@aws-sdk/client-eventbridge": "3.159.0",
"@aws-sdk/client-lambda": "3.198.0",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-angular": "^17.1.0",
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/microservices": "^9.1.6",
"@types/aws-lambda": "^8.10.108",
"@types/aws-serverless-express": "^3.3.5",
"@types/express": "^4.17.14",
"@types/gulp": "^4.0.9",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"aws-cdk": "^2.42.1",
"aws-lambda": "^1.0.7",
"aws-serverless-express": "^3.4.0",
"axios": "^0.27.2",
"class-validator": "^0.13.2",
"commitlint-circle": "^1.0.0",
"concurrently": "^7.3.0",
"esbuild": "^0.15.8",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^28.0.1",
"lerna": "^6.5.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"@nestjs/platform-express": "^9.1.6",
"aws-cdk-lib": "^2.42.1",
"aws-sdk": "^2.1282.0",
"constructs": "^10.1.108",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6"
}
}