-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
145 lines (145 loc) · 4.53 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
145
{
"name": "aerie-ui",
"description": "The client application for Aerie.",
"version": "3.2.0",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/aerie-ui.git"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.8.1"
},
"scripts": {
"build": "rm -rf build && vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"cloc": "cloc src",
"dev": "npm run version && vite dev --port 3000",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint --ignore-path .gitignore .",
"lint:css": "stylelint **/*.{css,svelte}",
"lint:css:fix": "stylelint **/*.{css,svelte} --fix",
"prebuild": "npm run version",
"predev": "node ./scripts/check-node.cjs",
"preview": "vite preview --port 3000",
"sync": "svelte-kit sync",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"test:e2e:debug": "playwright test --debug",
"test:e2e:with-ui": "playwright test --ui",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"version": "node ./scripts/version.js"
},
"dependencies": {
"@fontsource/jetbrains-mono": "^5.0.19",
"@nasa-jpl/aerie-ampcs": "^1.0.5",
"@nasa-jpl/seq-json-schema": "^1.0.20",
"@nasa-jpl/stellar": "^1.1.18",
"@streamparser/json": "^0.0.17",
"@sveltejs/adapter-node": "5.0.1",
"@sveltejs/kit": "^2.5.4",
"ag-grid-community": "32.2.0",
"ajv": "^8.12.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.11.0",
"cookie": "^0.6.0",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-drag": "^3.0.0",
"d3-quadtree": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time": "^3.1.0",
"fastest-levenshtein": "^1.0.16",
"graphql-ws": "^5.14.0",
"json-source-map": "^0.6.1",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.17.21",
"modern-css-reset": "^1.4.0",
"monaco-editor": "0.47.0",
"postgres-interval": "^4.0.0",
"split-grid": "^1.0.11",
"svelte": "^4.0.0",
"svelte-dnd-action": "^0.9.22",
"svelte-popperjs": "^1.3.2",
"svelte-preprocess": "^5.0.3",
"tippy.js": "^6.3.7",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.16.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.10.1",
"@codemirror/lint": "^6.5.0",
"@lezer/generator": "^1.7.0",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.4.0",
"@playwright/test": "^1.44.0",
"@poppanator/sveltekit-svg": "^4.2.1",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@testing-library/svelte": "^4.0.2",
"@types/cookie": "^0.6.0",
"@types/d3-array": "^3.0.5",
"@types/d3-axis": "^3.0.2",
"@types/d3-brush": "^3.0.2",
"@types/d3-drag": "^3.0.2",
"@types/d3-format": "^3.0.4",
"@types/d3-quadtree": "^3.0.2",
"@types/d3-scale": "^4.0.3",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/d3-selection": "^3.0.5",
"@types/d3-shape": "^3.1.1",
"@types/d3-time": "^3.0.0",
"@types/d3-zoom": "^3.0.8",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.11.30",
"@types/picomatch": "^2.3.0",
"@types/toastify-js": "^1.11.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"cloc": "2.0.0-cloc",
"codemirror": "^6.0.1",
"d3-format": "^3.1.0",
"d3-zoom": "^3.0.0",
"esbuild": "^0.24.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.32.0",
"jsdom": "^24.0.0",
"picocolors": "^1.0.0",
"picomatch": "^4.0.1",
"postcss-html": "^1.5.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"semver": "^7.5.3",
"stylelint": "^16.2.1",
"stylelint-config-html": "^1.1.0",
"stylelint-order": "^6.0.4",
"svelte-check": "^3.4.4",
"tslib": "^2.6.0",
"typescript": "5.0.4",
"unique-names-generator": "^4.7.1",
"vite": "5.4.8",
"vitest": "^1.0.0"
},
"//": "remove this override when vite updates esbuild dependency to 0.24",
"overrides": {
"vite": {
"esbuild": "^0.24.0"
}
}
}