This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "tp-link-webapp",
"version": "1.0.0",
"description": "A web app for tp-link smarthome",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"deploy": "cross-env DEPLOY_ENV=GH_PAGES push-dir --dir=dist --branch=gh-pages --cleanup",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ColinMcNeil/TP-Link-WebApp.git"
},
"author": "Colin McNeil",
"license": "ISC",
"bugs": {
"url": "https://github.com/ColinMcNeil/TP-Link-WebApp/issues"
},
"homepage": "https://github.com/ColinMcNeil/TP-Link-WebApp#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@nuxtjs/axios": "^5.9.5",
"nuxt": "^1.4.5",
"nuxt-fontawesome": "^0.3.0",
"tplink-cloud-api": "^0.3.9",
"uuid": "^3.4.0",
"vue-cookie": "^1.1.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^4.7.1",
"prettier": "^1.19.1",
"push-dir": "^0.4.1"
}
}