-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.09 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
{
"title": "IWR Interactive Visualization",
"name": "iwr-interactive-visualization",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "npm run build && run-p autobuild serve",
"serve": "http-server dist/ -c-1 -p 0 -o",
"build": "npm run clean && run-p build-images build-other",
"autobuild": "node scripts/autobuild.mjs",
"build-images": "node scripts/build-images.mjs",
"build-other": "node scripts/build-other.mjs",
"clean": "node scripts/clean.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/ssciwr/iwr-interactive-visualization.git"
},
"dependencies": {
"@svgdotjs/svg.filter.js": "3.0.8",
"@svgdotjs/svg.js": "3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"chokidar": "4.0.1",
"eslint": "^9.11.1",
"glob": "^11.0.0",
"http-server": "14.1.1",
"npm-run-all": "4.1.5",
"shelljs": "0.8.5",
"svgdom": "0.1.19",
"tiff-to-png": "2.0.2",
"ts-loader": "9.5.1",
"typescript": "5.6.2",
"typescript-eslint": "^8.8.0",
"webpack": "5.95.0",
"yaml": "2.5.1"
}
}