-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.03 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
{
"name": "tou-explorer",
"private": true,
"version": "1.6.1",
"author": {
"name": "Matt Magoffin",
"email": "[email protected]"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"release": "generate-release --current-version \"$(bin/remove-preid.cjs)\""
},
"ava": {
"files": [
"src/test/ts/**/*"
],
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": "tsc"
}
},
"c8": {
"exclude": [
"src/test/ts/**"
],
"exclude-after-remap": true,
"reporter": [
"text",
"html"
]
},
"config": {
"generateRelease": {
"no_confirm": false,
"remote": "origin",
"pre_commit_commands": [
"npm run build"
],
"post_complete_commands": [
"npmversion --increment prepatch --preid dev --nogit-tag"
],
"files_to_commit": []
}
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"billboard.js": "^3.9.4",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"d3-array": "^3.2.4",
"d3-time-format": "^4.1.0",
"nifty-tou": "SolarNetwork/nifty-tou#develop",
"papaparse": "^5.4.1",
"read-excel-file": "^5.7.1",
"solarnetwork-api-core": "SolarNetwork/sn-api-core-js#develop"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/bootstrap": "^5.2.8",
"@types/d3-array": "^3.0.9",
"@types/d3-time-format": "^4.0.2",
"@types/papaparse": "^5.3.8",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"ava": "^5.3.1",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"generate-release": "^1.1.1",
"npmversion": "^1.7.0",
"sass": "^1.67.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"overrides": {
"crypto-js": "4.2.0",
"json5": "2.2.3",
"lodash": "4.17.21",
"minimist": "1.2.8",
"postcss": "8.4.31",
"semver": "7.5.4"
}
}