This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "Casa-Node",
"version": "1.19.0",
"description": "Your Casa Home Node",
"author": "Casa Inc.",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test:unit": "ava",
"test:browser": "cypress open",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"deploy": "s3-deploy './dist/**' --cwd './dist/' --region us-east-1 --bucket spacefleet.com",
"ship": "nuxt build && s3-deploy './dist/**' --cwd './dist/' --region us-east-1 --bucket spacefleet.com"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^5.2.0",
"@nuxtjs/auth": "^4.5.2",
"@nuxtjs/axios": "^5.3.3",
"@nuxtjs/dotenv": "^1.1.1",
"bignumber.js": "^8.0.1",
"node-sass": "^4.11.0",
"nuxt": "^1.0.0",
"nuxt-buefy": "^0.1.0",
"nuxt-env": "^0.0.4",
"nuxt-fontawesome": "^0.3.0",
"sass-loader": "^7.1.0",
"vee-validate": "^2.1.1",
"vue-clipboard2": "^0.2.1",
"vue-moment": "^4.0.0",
"vue-numeric": "^2.3.0",
"vue-offline": "^1.0.204",
"vue-qriously": "^1.1.1",
"vue2-slideout-panel": "^0.11.0"
},
"devDependencies": {
"ava": "^1.0.1",
"babel-eslint": "^8.2.1",
"cross-env": "^5.0.1",
"cypress": "^3.3.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"jsdom": "^13.1.0",
"s3-deploy": "^1.1.1"
},
"ava": {
"require": [
"babel-register"
],
"files": [
"test/unit/**/*"
]
},
"babel": {
"presets": [
"env"
]
}
}