-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "lernkartei",
"description": "A flashcard app for German-language vocabulary building",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "yarn run deploy:firebase && parcel build index.html && cp ./_redirects ./dist/",
"format": "elm-format --yes src/",
"deploy:firebase": "node_modules/.bin/firebase deploy --token \"$FIREBASE_TOKEN\" --only firestore",
"test": "elm-test"
},
"devDependencies": {
"elm": "^0.19.1-3",
"elm-format": "^0.8.1",
"elm-hot": "^1.0.1",
"firebase-tools": "^8.2.0",
"node-elm-compiler": "^5.0.1",
"parcel-bundler": "1.12.4",
"parcel-plugin-sw-precache": "^1.1.2",
"tailwindcss": "^0.7.3"
},
"dependencies": {
"@firebase/app": "^0.3.5",
"@firebase/auth": "^0.9.1",
"@firebase/firestore": "^0.9.2",
"babel-polyfill": "^6.26.0",
"copy-text-to-clipboard": "^1.0.4",
"elm-test": "^0.19.0-rev4",
"register-service-worker": "^1.5.2"
},
"sw-precache": {
"staticFileGlobs": [
"dist/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff}"
],
"stripPrefix": "dist/"
}
}