-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 5.23 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "coda",
"version": "3.0.7",
"description": "Contextual Operations Data Activation",
"main": "src/index.tsx",
"scripts": {
"make-dotenv": "make-dotenv",
"build": "npm run vite:build && npm run api:build",
"dev": "concurrently -n vite,api \"npm run vite:dev:wait\" \"npm run api:dev\"",
"test": "jest",
"test:all": "npm run lint && npm run tsc && npm run build && npm run test",
"test:coverage": "jest --coverage --reporters=default --reporters=jest-junit",
"tsc": "tsc --pretty",
"lint": "eslint . --color",
"lint:fix": "eslint . --color --fix",
"postinstall": "rimraf node_modules/paper/dist/docs",
"docker:preview": "bash ./appcompose preview up -d",
"docker:preview:rebuild": "bash ./appcompose preview build",
"docker:preview:rebuild:nocache": "bash ./appcompose preview build --no-cache",
"docker:services": "bash ./appcompose services up -d",
"docker:services:rebuild": "bash ./appcompose services build",
"docker:services:rebuild:nocache": "bash ./appcompose services build --no-cache",
"vite:build": "vite build --emptyOutDir",
"vite:dev": "vite",
"vite:dev:debug": "vite dev --debug",
"vite:dev:wait": "wait-on http://localhost:3001/api/v1/health && vite",
"api:build": "node esbuild.mjs",
"api:build:watch": "npm run api:build -- --watch",
"api:dev": "rimraf ./.local/express/dist && cross-env MOCK_USER=true concurrently -n build,serve \"npm run api:build:watch\" \"wait-on ./.local/express/dist/api.js && cross-env NODE_EXTRA_CA_CERTS=./.env.local.cert.pem nodemon --enable-source-maps --inspect=8229 --legacy-watch --watch ./.local/express/dist ./.local/express/dist/api.js ./src/server\"",
"api:prod": "cross-env NODE_ENV=production node ./.local/express/dist/api.js",
"migrate:up": "npx mikro-orm migration:up",
"migrate:down": "npx mikro-orm migration:down",
"migrate:create": "npx mikro-orm migration:create",
"migrate:fresh": "npx mikro-orm migration:fresh"
},
"repository": {
"type": "git",
"url": "git@eegitlab.fit.jsc.nasa.gov:coda/coda"
},
"author": "jsc-dl-emss-coda@mail.nasa.gov",
"license": "ISC",
"dependencies": {
"@emss/logger": "^0.7.0",
"@emss/make-dotenv": "^0.3.2",
"@emss/oauth2-proxy-backend": "^0.5.0",
"@emss/oauth2-proxy-frontend": "^0.2.9",
"@emss/utils": "^0.5.0",
"@evamss/ntlm": "^2.0.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mikro-orm/cli": "6.3.13",
"@mikro-orm/core": "6.3.13",
"@mikro-orm/migrations": "6.3.13",
"@mikro-orm/postgresql": "6.3.13",
"@mikro-orm/seeder": "6.3.13",
"@reduxjs/toolkit": "^2.3.0",
"cacache": "^19.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fast-xml-parser": "^4.5.0",
"hls.js": "^1.5.17",
"leo-profanity": "^1.7.0",
"lodash": "^4.17.21",
"lzutf8": "^0.6.3",
"mapbox-gl": "^3.7.0",
"mwbot": "^2.1.3",
"paper": "^0.12.18",
"path": "^0.12.7",
"plotly.js-basic-dist": "^2.35.2",
"react": "^18.3.1",
"react-cookie": "^7.2.1",
"react-dom": "^18.3.1",
"react-lazy-load-image-component": "^1.6.2",
"react-modal": "^3.16.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"react-tooltip": "^5.28.0",
"rimraf": "^6.0.1",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"stream-browserify": "^3.0.0",
"tle.js": "^4.9.0",
"tough-cookie-file-store": "^2.0.3",
"undici": "^6.20.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@emss/jest-mock-console": "^1.1.5",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.6.1",
"@types/cacache": "^17.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.13",
"@types/leo-profanity": "^1.5.4",
"@types/lodash": "^4.17.10",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.7.6",
"@types/plotly.js-basic-dist": "^1.54.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-lazy-load-image-component": "^1.6.4",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.34",
"@types/react-test-renderer": "^18.3.0",
"@types/request": "^2.48.12",
"@types/tough-cookie-file-store": "^2.0.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-junit": "^16.0.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"wait-on": "^8.0.1"
},
"browser": {
"services/iss-wiki-server": false
},
"mikro-orm": {
"useTsNode": true,
"tsConfigPath": "./tsconfig.orm.json",
"configPaths": [
"mikro-orm.config.ts"
]
}
}