-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "site-analytics",
"version": "0.1.0",
"bin": {
"site-analytics": "bin/site-analytics.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint --ext .js --ignore-pattern node_modules src/ asyncSrc/ syntheticsSrc/",
"deploy": "npm run lint && cdk deploy --all"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.10",
"@types/mustache": "^4.1.3",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"aws-cdk": "2.18.0",
"cdk-pigeon": "^0.1.0",
"crow-api": "^2.4.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"jest": "^26.4.2",
"mustache": "^4.2.0",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.18.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16"
}
}