forked from websanova/vue-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (45 loc) · 1.52 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
{
"name": "@websanova/vue-auth",
"description": "Vue.js token based authentication plugin. Supports simple token based and Json Web Tokens (JWT) authentication.",
"keywords": ["vue", "vue.js", "jwt", "auth", "authentication", "plugin", "json", "web", "token"],
"author": {
"name": "Websanova",
"url": "http://websanova.com",
"username": "websanova",
"email": "[email protected]"
},
"main": "src/index.js",
"version": "2.11.0-beta",
"repository": {
"type": "git",
"url": "https://github.com/websanova/vue-auth"
},
"licenses": "MIT, GPL",
"dependencies": {
},
"devDependencies": {
"babel-core": "6.16.0",
"babel-loader": "6.2.5",
"babel-runtime": "6.9.2",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.16.0",
"vue-loader": "9.5.1",
"vue-style-loader": "1.0.0",
"css-loader": "0.25.0",
"style-loader": "0.13.1",
"vue-html-loader": "1.2.3",
"file-loader": "^0.8.4",
"webpack": "1.13.1",
"webpack-dev-server": "1.16.1",
"webpack-stream": "3.2.0",
"copy-webpack-plugin": "3.0.1",
"replace-webpack-plugin": "0.1.2",
"@websanova/vue-auth": "2.11.0-beta",
"axios": "^0.16.1",
"vue-axios": "^2.0.2"
},
"scripts": {
"1.x.demo": "webpack-dev-server --host=0.0.0.0 --https --port=8001 --content-base=1.x.demo/public/ --config=1.x.demo/webpack.config.js",
"2.x.demo": "webpack-dev-server --host=0.0.0.0 --https --port=8002 --content-base=2.x.demo/public/ --config=2.x.demo/webpack.config.js"
}
}