-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "vue2_starter",
"version": "1.0.0",
"description": "Vuejs 2 starter template",
"main": "src/main.js",
"author": "Eka Rudianto",
"license": "MIT",
"scripts": {
"prestart": "yarn install --production=false",
"build": "webpack",
"serve": "webpack-dev-server",
"start": "webpack-dev-server --port $PORT",
"test:unit": "test=unit jest ./test/unit -u",
"test:e2e": "test=e2e jest ./test/e2e",
"test": "yarn test:unit && yarn test:e2e"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"babel-core": "^6.25.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-env": "^1.5.2",
"chalk": "^2.4.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-vue": "^4.3.0",
"expect": "^22.4.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"node-sass": "^4.9.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"puppeteer": "^1.3.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.18.2",
"vue-jest": "^2.5.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.5",
"vue": "^2.5.13",
"vue-loader": "^14.2.1",
"vue-resource": "^1.5.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vuejs-logger": "^1.3.4"
},
"repository": "https://github.com/ekarudianto/vue-2-starter-template.git"
}