-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.26 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
40
41
42
43
{
"name": "pftools",
"version": "1.0.0",
"description": "Interactive Personal Finance",
"author": "Josh Stabback",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"deploy": "yarn build && yarn sync-s3 && yarn invalidate",
"sync-s3": "aws s3 sync dist s3://pftools.xyz --delete",
"invalidate": "aws cloudfront create-invalidation --distribution-id EPTDREGYGV1PZ --paths /index.html"
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/google-tag-manager": "^2.1.1",
"@nuxtjs/markdownit": "^1.2.3",
"clone": "^2.1.2",
"cross-env": "^5.2.0",
"fast-deep-equal": "^2.0.1",
"firebase": "^5.8.0",
"nuxt": "^2.3.4",
"nuxt-fire": "^1.3.0",
"vuedraggable": "^2.17.0",
"vuetify": "^1.5.6"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-vue": "^4.0.0",
"nodemon": "^1.11.0",
"prettier": "1.14.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2"
}
}