-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.35 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
{
"name": "leptosystem.com",
"version": "0.0.1",
"dependencies": {},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.418.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/querystring-parser": "^3.374.0",
"@aws-sdk/signature-v4": "^3.374.0",
"@aws-sdk/types": "^3.418.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@trpc/client": "^10.40.0",
"@trpc/server": "^10.40.0",
"@types/aws-lambda": "^8.10.124",
"@types/big.js": "^6.2.0",
"@types/cors": "^2.8.14",
"@types/deep-freeze": "^0.1.3",
"@types/express": "^4.17.19",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/node": "^20.7.0",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.7",
"@types/shelljs": "^0.8.13",
"@types/uuid": "^9.0.5",
"@vitejs/plugin-react": "^4.1.0",
"aws-amplify": "^5.3.11",
"aws-lambda": "^1.0.7",
"big.js": "^6.2.1",
"bootstrap": "^5.3.2",
"cors": "^2.8.5",
"deep-freeze": "^0.0.1",
"dotenv": "^16.3.1",
"esbuild-register": "^3.5.0",
"express": "^4.18.2",
"immer": "^10.0.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-bootstrap": "^2.9.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"sass": "^1.68.0",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.21",
"superjson": "^1.13.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"use-immer": "^0.9.0",
"uuid": "^9.0.1",
"vite": "^4.4.9",
"web-vitals": "^3.4.0",
"zod": "^3.22.4"
},
"scripts": {
"test": "npx jest",
"typecheck": "npx tsc --project tsconfig.json",
"typebuild": "npx tsc -P tsconfig.types.json --emitDeclarationOnly",
"www:start": "npm-run-all -p www:start:*",
"www:start:ui": "npx vite --config src/Modules/www/vite.config.ts --mode development",
"www:start:api": " node --require esbuild-register src/Modules/www/API/express.ts ",
"www:ui:update": "npm-run-all www:ui:update:*",
"www:ui:update:clean": "rm -rf dist/www-ui",
"www:ui:update:prebuild": "node --require esbuild-register src/Modules/www/UI/cli prebuild",
"www:ui:update:build": "npx vite build --mode $env --config src/Modules/www/vite.config.ts",
"www:ui:update:deploy": "node --require esbuild-register src/Modules/www/UI/cli deploy",
"www:api:update": "node --require esbuild-register src/Modules/www/API/cli deploy",
"esbuild": "node src/Utils/esbuild.js ${npm_config_src} ${npm_config_dist} --bundle --minify --sourcemap",
"cloudformation:impl": "npm-run-all cloudformation:impl:*",
"cloudformation:impl:proc": "aws cloudformation ${npm_config_proc}-stack --stack-name $npm_config_stackname --template-body $npm_config_filepath --parameters ParameterKey=Environment,ParameterValue=$(echo $env) ParameterKey=Prefix,ParameterValue=$(echo $PREFIX | tr '[:upper:]' '[:lower:]') $npm_config_parameters --capabilities CAPABILITY_NAMED_IAM --no-paginate",
"cloudformation:impl:wait": "aws cloudformation wait stack-${npm_config_proc}-complete --stack-name $npm_config_stackname --no-paginate"
}
}