-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "levis",
"version": "1.5.0-beta",
"main": "main.js",
"types": "main.ts",
"license": "MIT",
"private": true,
"scripts": {
"import": "cdk8s import",
"build": "tsc --outDir bin",
"watch": "tsc -w --outDir bin/dev",
"clean": "rm -rf bin manifests dist",
"test": "jest",
"test:re-snapshot": "jest --updateSnapshot",
"build-all": "yarn run clean && yarn run build",
"lint": "eslint . --ext .ts",
"start": "node bin/main.js"
},
"dependencies": {
"cdk8s": "^0.30.0",
"cdk8s-plus": "^0.30.0",
"constructs": "^3.0.14",
"log4js": "^6.3.0",
"minimist": "^1.2.5",
"yaml": "^2.0.0-6"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.14",
"@types/minimist": "^1.2.0",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"cdk8s-cli": "^0.30.0",
"eslint": "^7.2.0",
"fs-extra": "^10.0.0",
"jest": "^26.5.3",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}