-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.57 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.57 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "kms",
"version": "0.0.1",
"proxy": "http://localhost:8081",
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "eslint . --ext .jsx,.js,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .jsx,.js,.ts,.tsx",
"preview": "vite preview",
"test": "vitest",
"cdk": "cdk",
"start-local": "bin/start-local.sh",
"start-local:watch": "SAM_LOCAL_WATCH=true bin/start-local.sh",
"deploy-application": "cd cdk && npm ci --include=dev && npx cdk deploy --all --progress events --require-approval never",
"rdf4j:create-network": "bash bin/rdf4j/create-network.sh",
"rdf4j:build": "bash bin/rdf4j/build.sh",
"rdf4j:start": "bash bin/rdf4j/start.sh",
"rdf4j:stop": "bash bin/rdf4j/stop.sh",
"rdf4j:pull": "bash bin/rdf4j/pull.sh",
"rdf4j:setup": "bash bin/rdf4j/setup.sh",
"rdf4j:shell": "bash bin/rdf4j/shell.sh",
"localstack:start": "bash bin/localstack/start.sh",
"localstack:stop": "bash bin/localstack/stop.sh",
"redis:start": "bash bin/redis/start.sh",
"redis:stop": "bash bin/redis/stop.sh",
"redis:connect": "bash bin/redis/connect.sh",
"redis:memory_used": "bash bin/redis/memory_used.sh",
"prime-cache:invoke-local": "bash scripts/local/invoke_prime_concepts_cache.sh",
"export-data": "vite-node --config vite.config.js setup/scripts/exportData.js -all",
"create-rdf-files": "vite-node --config vite.config.js setup/scripts/createRdfFiles.js"
},
"dependencies": {
"@aws-sdk/client-eventbridge": "^3.997.0",
"@aws-sdk/client-lambda": "^3.775.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-sfn": "^3.775.0",
"@aws-sdk/client-sns": "^3.997.0",
"@aws-sdk/client-sqs": "^3.997.0",
"@xmldom/xmldom": "^0.8.10",
"compact-object-deep": "^1.0.0",
"csv": "^6.3.11",
"date-fns": "^4.1.0",
"fast-xml-parser": "^5.3.4",
"html-entities": "^2.5.2",
"html-escaper": "^3.0.3",
"install": "^0.13.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"redis": "^4.7.1",
"remove": "^0.1.5",
"stream": "^0.0.3",
"uuid": "^11.1.0",
"vite": "^4.5.5",
"xpath": "^0.0.34"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.24.1",
"@edsc/eslint-config": "^0.0.5",
"@smithy/util-stream": "^3.0.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-istanbul": "^1.4.0",
"aws-cdk": "2.1118.0",
"aws-cdk-lib": "2.248.0",
"aws-sdk-client-mock": "^4.0.0",
"constructs": "^10.4.3",
"esbuild": "^0.19.12",
"esbuild-node-externals": "^1.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.2",
"jsdom": "^22.1.0",
"postcss-scss": "^4.0.9",
"rollup-plugin-polyfill-node": "^0.12.0",
"start-server-and-test": "^2.0.2",
"stylelint": "^15.10.3",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^1.4.0"
}
}