| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "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 ./src/*.* ./build",
- "build:js": "webpack --mode=production",
- "watch:js": "webpack --mode=development --watch",
- "watch:html": "npm-watch",
- "deploy": "npm run build && scp -r build/* storm:/mnt2/nginx-storage/weather/"
- },
- "watch": {
- "build:html": {
- "patterns": [
- "src"
- ],
- "extensions": "html",
- "runOnChangeOnly": false
- }
- },
- "keywords": [],
- "author": "Jason Tarka <git@tarka.ca>",
- "license": "",
- "dependencies": {
- "chart.js": "^4.2.1",
- "firebase": "^9.17.2",
- "svg-gauge": "^1.0.7"
- },
- "devDependencies": {
- "@types/mocha": "^10.0.1",
- "mocha": "^10.2.0",
- "npm-watch": "^0.11.0",
- "should": "^13.2.3",
- "ts-loader": "^9.4.2",
- "ts-mocha": "^10.0.0",
- "ts-node": "^10.9.1",
- "typescript": "^4.9.5",
- "webpack-cli": "^5.0.1"
- }
- }
|