-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "cicd.awscommunitybuilders.org",
"version": "0.1.0",
"bin": {
"cicd.awscommunitybuilders.org": "bin/cicd.awscommunitybuilders.org.js"
},
"scripts": {
"build": "vite build",
"clean": "rimraf cdk.out coverage dist",
"deploy": "npm run clean && cdk deploy --require-approval never",
"destroy": "cdk destroy",
"dev": "vite",
"diff": "cdk diff",
"serve": "vite preview",
"synth": "cdk synth",
"test": "vitest run --coverage --silent"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"aws-cdk-lib": "^2.86.0",
"constructs": "^10.2.63",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"aws-cdk": "^2.86.0",
"esbuild": "^0.18.10",
"fs-extra": "^11.1.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}