-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.61 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.61 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vrviewer-sdk",
"version": "1.1.4",
"description": "VRViewer sdk help you to create and edit your VR content more easily.",
"author": "kevin.hu <kevin.hu@staging.com.tw>, jason.tseng <jason@staging.com.tw>, alex <alex@staging.com.tw>",
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "node examples/app.js",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"unit-watch": "jest --config test/unit/jest.conf.js --coverage --watchAll",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"build": "node build/build.js",
"analyze": "NODE_ENV=production npm_config_report=true npm run build"
},
"dependencies": {
"davidshimjs-qrcodejs": "^0.0.2",
"moment": "^2.22.1",
"vue": "^2.5.16",
"vue-i18n": "^7.6.0",
"vue-krpano": "^1.5.3",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babili": "^0.1.4",
"base64-inline-loader": "^1.1.1",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"chromedriver": "^2.38.3",
"copy-webpack-plugin": "^4.5.1",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"events": "^2.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-status": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"inject-loader": "^4.0.1",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"jest-static-stubs": "^0.0.1",
"jest-transform-stub": "^1.0.0",
"nightwatch": "^0.9.21",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "3.2.0",
"ora": "^2.1.0",
"path": "^0.12.7",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"postcss-url": "^7.3.2",
"prettier": "1.12.0",
"protobufjs": "^5.0.3",
"rimraf": "^2.6.2",
"selenium-server": "^3.12.0",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-jest": "^2.5.0",
"vue-loader": "^14.2.2",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 8.5.0",
"npm": ">= 5.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}