-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
64
65
{
"name": "node-api-client",
"version": "0.1.0",
"description": "Node API Tutorial - client-side",
"scripts": {
"start": "npm run serve",
"test": "npm run test:e2e",
"serve": "export NODE_ENV=prod && vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"e2e": "vue-cli-service e2e",
"test:e2e": "vue-cli-service test:e2e",
"predeploy": "npm run build",
"deploy": "node node_modules/gh-pages/bin/gh-pages-clean.js && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlozovei/node-api-client.git"
},
"author": "Julio Lozovei <[email protected]> (https://jlozovei.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/jlozovei/node-api-client/issues"
},
"homepage": "https://jlozovei.github.io/node-api-client",
"dependencies": {
"axios": "^0.18.0",
"moment": "^2.22.1",
"vue": "^2.5.16",
"vue-awesome": "^3.0.0",
"vue-progressive-image": "^2.5.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.10",
"@vue/cli-plugin-e2e-cypress": "^3.0.0-beta.10",
"@vue/cli-plugin-eslint": "^3.0.0-beta.10",
"@vue/cli-service": "^3.0.0-beta.10",
"@vue/eslint-config-prettier": "^3.0.0-beta.10",
"gh-pages": "^1.2.0",
"lint-staged": "^6.0.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"vue-template-compiler": "^2.5.13"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}