forked from NASA-AMMOS/aerie-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "aerie-ui",
"description": "The client application for Aerie.",
"version": "0.12.2",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/aerie-ui.git"
},
"engines": {
"node": ">=16.9.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "rm -rf build && vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "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 .",
"optimize": "vite optimize",
"prebuild": "npm run version",
"predev": "node ./scripts/check-node.cjs",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"test:e2e:debug": "PWDEBUG=1 playwright test",
"test:e2e:dev": "AUTH_TYPE=none ORIGIN=http://localhost:3000 node build",
"test:unit": "vitest run",
"version": "node ./scripts/version.js"
},
"dependencies": {
"@nasa-jpl/stellar": "^1.0.3",
"@sveltejs/adapter-node": "1.0.0-next.84",
"@sveltejs/kit": "1.0.0-next.394",
"ag-grid-community": "^28.0.2",
"bootstrap": "^5.2.0",
"bootstrap-icons": "^1.9.1",
"cookie": "^0.5.0",
"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.1.0",
"graphql-ws": "^5.9.1",
"lodash-es": "^4.17.21",
"modern-css-reset": "^1.4.0",
"monaco-editor": "^0.33.0",
"postgres-interval": "^4.0.0",
"split-grid": "^1.0.11",
"svelte": "^3.49.0",
"svelte-dnd-action": "^0.9.19",
"tippy.js": "^6.3.7",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@playwright/test": "^1.24.1",
"@testing-library/svelte": "^3.1.3",
"@types/cookie": "^0.5.1",
"@types/d3-axis": "^3.0.1",
"@types/d3-brush": "^3.0.1",
"@types/d3-drag": "^3.0.1",
"@types/d3-quadtree": "^3.0.2",
"@types/d3-scale": "^4.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/d3-selection": "^3.0.3",
"@types/d3-shape": "^3.1.0",
"@types/lodash-es": "^4.17.6",
"@types/toastify-js": "^1.11.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cloc": "^2.10.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"semver": "^7.3.7",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"unique-names-generator": "^4.7.1",
"vite": "^3.0.3",
"vitest": "^0.19.1"
}
}