-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "weatherbot-dev-plotter",
"version": "0.0.1",
"description": "Developer package for plotting data from the WeatherBot",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run typegen && rollup -c",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict",
"typegen": "tsc --outFile dist/weatherbot-dev-plotter.ts",
"fix-cors": "cors-backdoor --target http://127.0.0.1:8000"
},
"author": "",
"license": "MIT & Apache 2.0",
"dependencies": {
"chart.js": "^4.3.0",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@types/chart.js": "^2.9.37",
"cors-backdoor": "^1.0.6",
"rimraf": "^5.0.1",
"rollup": "^3.22.0",
"rollup-plugin-filesize": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}