forked from renz45/Vue-BookListing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.22 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
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
{
"name": "build-a-reading-list-application-with-vue",
"version": "1.0.0",
"description": "Build a Reading List Application with Vue.js",
"author": "Pluralsight",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"test:module1": "cross-env NODE_ENV=test mocha 'test/unit/mocha/part1/*.spec.js' || true",
"test:module2": "cross-env NODE_ENV=test mocha 'test/unit/mocha/part2/*.spec.js' || true",
"test:module3": "cross-env NODE_ENV=test mocha 'test/unit/mocha/part3/*.spec.js' || true",
"test:module4": "cross-env NODE_ENV=test mocha 'test/unit/mocha/part4/*.spec.js' || true",
"test:module5": "cross-env NODE_ENV=test mocha 'test/unit/mocha/part5/*.spec.js' || true",
"test": "cross-env NODE_ENV=test mocha 'test/unit/mocha/**/*.spec.js' || true",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs",
"build": "node build/build.js"
},
"dependencies": {
"axios": "^0.17.1",
"cheerio": "^1.0.0-rc.2",
"cssom": "^0.3.2",
"esprima": "^4.0.0",
"esquery": "^1.0.1",
"jquery": "^3.3.1",
"jsdom": "^11.7.0",
"minimist": "^1.2.0",
"nightmare": "^2.10.0",
"npm": "^5.8.0",
"nwmatcher": "^1.4.4",
"parse5": "^3.0.3",
"query-selector": "^1.0.9",
"vue": "^2.5.16"
},
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^4.1.2",
"chalk": "^2.3.2",
"chromedriver": "^2.37.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.11",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.10.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"inject-loader": "^3.0.0",
"mocha": "^3.2.0",
"nightwatch": "^0.9.20",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"rimraf": "^2.6.0",
"selenium-server": "^3.11.0",
"semver": "^5.5.0",
"shelljs": "^0.7.6",
"sinon": "^4.5.0",
"sinon-chai": "^2.8.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^0.5.8",
"vue-loader": "^13.7.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}