aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorJakob Stendahl <jakobste@uio.no>2020-10-13 20:28:52 +0200
committerJakob Stendahl <jakobste@uio.no>2020-10-13 20:28:52 +0200
commite53bddfc71d70eb9f2b7a2910b4b191bc43088ab (patch)
tree6074f957be167995845588352ce4108b9759fa00 /package.json
downloadAurora-data-e53bddfc71d70eb9f2b7a2910b4b191bc43088ab.tar.gz
Aurora-data-e53bddfc71d70eb9f2b7a2910b4b191bc43088ab.zip
First commit
Diffstat (limited to 'package.json')
-rw-r--r--package.json57
1 files changed, 57 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..c303fac
--- /dev/null
+++ b/package.json
@@ -0,0 +1,57 @@
+{
+ "name": "Aurora-data",
+ "description": "Progressive web app for the info needed when aurora hunting.",
+ "version": "0.0.1",
+ "scripts": {
+ "dev": "run-p start:dev watch:css",
+ "build": "npm run build:css && sapper build --legacy",
+ "watch:css": "postcss static/global.css -o static/index.css -w",
+ "build:css": "NODE_ENV=production postcss static/global.css -o static/index.css",
+ "export": "sapper export --basepath aurora-data --legacy",
+ "start": "node __sapper__/build",
+ "start:dev": "sapper dev",
+ "cy:run": "cypress run",
+ "cy:open": "cypress open",
+ "test": "run-p --race dev cy:run",
+ "deploy": "npm run export && node ./scripts/gh-pages.js"
+ },
+ "dependencies": {
+ "axios": "^0.20.0",
+ "compression": "^1.7.1",
+ "polka": "next",
+ "sirv": "^1.0.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.0.0",
+ "@babel/plugin-syntax-dynamic-import": "^7.0.0",
+ "@babel/plugin-transform-runtime": "^7.0.0",
+ "@babel/preset-env": "^7.0.0",
+ "@babel/runtime": "^7.0.0",
+ "@rollup/plugin-babel": "^5.0.0",
+ "@rollup/plugin-commonjs": "^14.0.0",
+ "@rollup/plugin-node-resolve": "^8.0.0",
+ "@rollup/plugin-replace": "^2.2.0",
+ "@rollup/plugin-typescript": "^6.0.0",
+ "@tsconfig/svelte": "^1.0.10",
+ "@types/compression": "^1.7.0",
+ "@types/node": "^14.11.1",
+ "@types/polka": "^0.5.1",
+ "gh-pages": "^3.1.0",
+ "npm-run-all": "^4.1.5",
+ "postcss": "^8.1.1",
+ "postcss-cli": "^8.0.0",
+ "postcss-import": "^12.0.1",
+ "postcss-load-config": "^2.1.2",
+ "postcss-nested": "^5.0.1",
+ "rollup": "^2.3.4",
+ "rollup-plugin-svelte": "^6.0.1",
+ "rollup-plugin-terser": "^7.0.0",
+ "sapper": "^0.28.0",
+ "svelte": "^3.17.3",
+ "svelte-check": "^1.0.46",
+ "svelte-preprocess": "^4.3.2",
+ "tailwindcss": "^1.8.10",
+ "tslib": "^2.0.1",
+ "typescript": "^4.0.3"
+ }
+}