-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
122 lines (122 loc) · 3.81 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
{
"name": "aerie-ui",
"description": "The client application for Aerie.",
"version": "2.6.0",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/aerie-ui.git"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.0"
},
"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 --plugin-search-dir=. .",
"format:write": "prettier --write --plugin-search-dir=. .",
"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": "PWDEBUG=1 playwright test",
"test:unit": "vitest run",
"version": "node ./scripts/version.js"
},
"dependencies": {
"@fontsource/jetbrains-mono": "^5.0.3",
"@nasa-jpl/aerie-ampcs": "^1.0.1",
"@nasa-jpl/stellar": "^1.1.18",
"@sveltejs/adapter-node": "1.2.4",
"@sveltejs/kit": "1.20.5",
"ag-grid-community": "30.2.0",
"ajv": "^8.12.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.11.0",
"cookie": "^0.5.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",
"graphql-ws": "^5.14.0",
"jszip": "^3.10.1",
"jwt-decode": "^3.1.2",
"lodash-es": "^4.17.21",
"modern-css-reset": "^1.4.0",
"monaco-editor": "0.37.1",
"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": {
"@playwright/test": "^1.35.1",
"@poppanator/sveltekit-svg": "^4.0.0",
"@testing-library/svelte": "^4.0.2",
"@types/cookie": "^0.5.1",
"@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/picomatch": "^2.3.0",
"@types/toastify-js": "^1.11.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitest/ui": "^0.32.2",
"cloc": "^2.11.0",
"d3-format": "^3.1.0",
"d3-zoom": "^3.0.0",
"esbuild": "^0.18.10",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.32.0",
"jsdom": "^22.1.0",
"picocolors": "^1.0.0",
"picomatch": "^2.3.1",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"semver": "^7.5.3",
"stylelint": "^15.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-order": "^6.0.3",
"svelte-check": "^3.4.4",
"tslib": "^2.6.0",
"typescript": "5.0.4",
"unique-names-generator": "^4.7.1",
"vite": "4.3.9",
"vitest": "0.32.2"
}
}