| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "weather-station",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "test": "ts-mocha src/**/*.test.ts",
- "clean": "rm -rf build",
- "build": "npm run clean && npm run build:js && npm run build:html",
- "build:html": "cp -r ./src/*.html ./build",
- "build:js": "webpack --mode=production",
- "watch:js": "webpack --mode=development --watch",
- "watch:html": "npm-watch"
- },
- "watch": {
- "build:html": {
- "patterns": ["src"],
- "extensions": "html",
- "runOnChangeOnly": false
- }
- },
- "keywords": [],
- "author": "Jason Tarka <git@tarka.ca>",
- "license": "",
- "dependencies": {
- "@types/firebase": "^3.2.1",
- "chart.js": "^3.7.0",
- "firebase": "^9.6.1",
- "svg-gauge": "^1.0.6"
- },
- "devDependencies": {
- "@types/mocha": "^9.0.0",
- "@types/should": "^13.0.0",
- "mocha": "^8.4.0",
- "npm-watch": "^0.11.0",
- "should": "^13.2.3",
- "ts-loader": "^9.2.6",
- "ts-mocha": "^8.0.0",
- "ts-node": "^10.4.0",
- "typescript": "^4.5.4",
- "webpack-cli": "^4.9.1"
- }
- }
|