-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.61 KB
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
{
"name": "solarnetwork-example-typescript-datum-loader",
"private": true,
"version": "1.1.1",
"homepage": "https://go.solarnetwork.net/dev/example/typescript-datum-loader/",
"author": {
"name": "Matt Magoffin",
"email": "matt@solarnetwork.net"
},
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=18.18"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"ava": {
"files": [
"src/test/ts/**/*"
],
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": "tsc"
}
},
"c8": {
"exclude": [
"src/test/ts/**"
],
"exclude-after-remap": true,
"reporter": [
"text",
"html"
]
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.6",
"bootstrap-icons": "^1.13.1",
"d3-selection": "^3.0.0",
"solarnetwork-api-core": "^3.3.0"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@eslint/js": "^9.27.0",
"@types/bootstrap": "^5.2.10",
"@types/d3-selection": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"ava": "^6.3.0",
"c8": "^10.1.3",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"npmversion": "^2.0.5",
"sass": "^1.89.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5"
},
"overrides": {
"json5": "2.2.3",
"lodash": "4.17.21",
"minimist": "1.2.8",
"postcss": "8.4.31",
"semver": "7.5.4"
}
}