forked from swarmion/swarmion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.71 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
{
"name": "@swarmion/serverless-cdk-plugin",
"description": "Serverless plugin to use CDK constructs in serverless framework applications",
"version": "0.15.1",
"license": "MIT",
"homepage": "https://www.swarmion.dev",
"bugs": "https://github.com/swarmion/swarmion/issues",
"repository": "swarmion/swarmion.git",
"keywords": [
"CDK",
"Serverless",
"Typescript"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint-fix": "pnpm linter-base-config --fix",
"lint-fix-all": "pnpm lint-fix .",
"linter-base-config": "eslint --ext=js,ts",
"package": "pnpm clean && pnpm package-cjs && pnpm package-esm && pnpm package-types && pnpm package-types-aliases",
"package-cjs": "NODE_ENV=cjs pnpm transpile --out-dir dist/cjs --source-maps",
"package-esm": "NODE_ENV=esm pnpm transpile --out-dir dist/esm --source-maps",
"package-types": "tsc -p tsconfig.build.json",
"package-types-aliases": "tsc-alias -p tsconfig.build.json",
"test": "pnpm test-linter && pnpm test-type && pnpm test-unit && pnpm test-circular",
"test-circular": "pnpm depcruise --validate .dependency-cruiser.js src",
"test-linter": "pnpm linter-base-config .",
"test-type": "tsc --noEmit --emitDeclarationOnly false",
"test-unit": "jest --runInBand --collectCoverage --logHeapUsage",
"transpile": "babel src --extensions .ts --quiet",
"watch": "pnpm clean && concurrently 'pnpm:package-* --watch'"
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"@serverless/typescript": "^3.25.0",
"lodash": "^4.17.21",
"traverse": "^0.6.7",
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@serverless/test": "^11.1.0",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@types/node": "^18.11.9",
"@types/serverless": "^3.12.9",
"@types/traverse": "^0.6.32",
"aws-cdk-lib": "^2.52.0",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^7.6.0",
"constructs": "^10.1.173",
"dependency-cruiser": "^12.1.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"json-schema-to-ts": "^2.6.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"serverless": "^3.25.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.34.2",
"constructs": "^10.1.62"
}
}