-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "footprint",
"version": "0.1.0",
"bin": {
"cdk": "bin/cdk.js"
},
"private": true,
"scripts": {
"test": "jest",
"jest": "jest",
"lint": "eslint --ext .ts,.js lib/",
"lint:fix": "prettier --write 'lib/*.ts' && eslint --fix lib/*.ts",
"prepare": "husky install",
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^28.1.8",
"@types/node": "18.19.3",
"@types/prettier": "2.7.3",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"JSONStream": "^1.3.5",
"ajv": "^8.12.0",
"aws-cdk": "^2.116.0",
"aws-sdk": "^2.1524.0",
"aws-serverless-express": "^3.4.0",
"csv": "^6.3.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"shortid": "^2.2.16",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~4.9.5",
"uuid": "^8.3.2",
"xlsx": "^0.18.5"
},
"dependencies": {
"aws-cdk-lib": "2.116.0",
"aws-cdk-local": "^2.18.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
}
}