-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
107 lines (107 loc) · 3.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mmt",
"version": "0.0.1",
"scripts": {
"start": "vite",
"start:proxy": "node setup/graphQlProxy.js",
"start:graphdb": "docker run -it -p 8182:8182 tinkerpop/gremlin-server conf/gremlin-server-rest-modern.yaml",
"build": "vite build",
"lint": "eslint . --ext .jsx,.js",
"lint:css": "npx stylelint './static/src/**/*.(sc|c)ss'",
"preview": "vite preview",
"test": "vitest",
"cmr:setup": "node setup/setupCmr.js",
"cmr:start": "CMR_URS_PASSWORD=mock-urs-password node setup/startCmr.js",
"cmr:start_and_setup": "start-server-and-test cmr:start http-get://localhost:3003/collections.json cmr:setup",
"cmr:stop": "node setup/stopCmr.js",
"cmr:reset": "node setup/resetCmr.js",
"offline": "serverless offline start"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@edsc/metadata-preview": "^1.3.17",
"@node-saml/node-saml": "^4.0.5",
"@rjsf/core": "^5.15.0",
"@rjsf/utils": "^5.15.0",
"@rjsf/validator-ajv8": "^5.15.0",
"@uidotdev/usehooks": "^2.4.1",
"@vitejs/plugin-react": "^4.1.0",
"@xmldom/xmldom": "^0.8.10",
"bootstrap": "^5.3.2",
"camelcase-keys": "^7.0.2",
"classnames": "^2.3.2",
"commafy": "^0.0.6",
"compact-object-deep": "^1.0.0",
"cookie": "^0.6.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"esbuild": "^0.19.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.2",
"graphql": "^16.8.1",
"json-schema": "^0.4.0",
"jsonwebtoken": "^9.0.2",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"pluralize": "^8.0.0",
"postcss-scss": "^4.0.9",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-bootstrap-typeahead": "^6.3.2",
"react-cookie": "^7.1.4",
"react-datepicker": "^4.21.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-json-pretty": "^2.2.0",
"react-moment": "^1.1.3",
"react-router": "^6.18.0",
"react-router-dom": "^6.18.0",
"react-select": "^5.8.0",
"react-select-country-list": "^2.2.3",
"request": "^2.88.2",
"rollup-plugin-polyfill-node": "^0.12.0",
"serverless": "^3.35.2",
"serverless-esbuild": "^1.48.5",
"serverless-finch": "^4.0.3",
"serverless-offline": "^13.2.0",
"serverless-s3-local": "^0.8.1",
"vite": "^4.5.0",
"vite-plugin-ejs": "^1.6.4",
"vite-plugin-node-polyfills": "^0.21.0",
"xpath": "^0.0.34"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@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",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitest/coverage-istanbul": "^1.4.0",
"aws-sdk-client-mock": "^4.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"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",
"express": "^4.18.2",
"http": "^0.0.1-security",
"http-proxy": "^1.18.1",
"jsdom": "^22.1.0",
"start-server-and-test": "^2.0.2",
"stylelint": "^15.10.3",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.2.1",
"vitest": "^1.4.0"
}
}