forked from saqkhan1995/Vue-BookListing-Part-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.78 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
{
"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": "cross-env NODE_ENV=test mocha 'test/unit/mocha/**/*.spec.js' || true",
"debug": "cross-env NODE_ENV=test mocha --debug-brk",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs",
"build": "node build/build.js"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"esprima": "4.0.0",
"esquery": "1.0.1",
"lodash": "4.17.10",
"npm": "6.4.1",
"parse5": "3.0.3",
"vue": "2.5.17"
},
"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",
"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": "4.0.0-beta.0",
"file-loader": "1.1.11",
"friendly-errors-webpack-plugin": "1.7.0",
"html-webpack-plugin": "3.2.0",
"inject-loader": "4.0.1",
"mocha": "5.2.0",
"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",
"uglifyjs-webpack-plugin": "1.2.4",
"url-loader": "1.1.1",
"vue-loader": "14.2.3",
"vue-style-loader": "3.1.2",
"vue-template-compiler": "2.5.17",
"webpack": "4.0.0",
"webpack-bundle-analyzer": "2.11.1",
"webpack-cli": "3.1.1",
"webpack-dev-server": "3.1.9",
"webpack-merge": "4.1.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}