-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "vue-core",
"version": "0.0.1",
"description": "vue tutrial",
"main": "index.js",
"scripts": {
"build": "npm-run-all -p build:*",
"build:js": "webpack",
"build:pug": "pug src/template/*.pug --out dist",
"deploy": "ghpages --path dist",
"lint": "npm-run-all -p lint:*",
"lint:flow": "flow",
"lint:eslint": "eslint . --cache",
"prebuild": "rimraf dist",
"predeploy": "npm run build",
"prestart": "npm run build",
"start": "webpack-dev-server --content-base dist/",
"test": "npm-run-all -p test:*",
"test:lint": "npm run lint"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@takasho/eslint-config-flowtype": "1.0.0",
"babel": "6.23.0",
"babel-core": "6.26.3",
"babel-loader": "8.0.5",
"babel-plugin-syntax-flow": "6.18.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"css-loader": "2.1.1",
"eslint": "5.15.2",
"file-loader": "3.0.1",
"flow-bin": "0.95.1",
"ghpages": "0.0.10",
"node-sass": "4.11.0",
"npm-run-all": "4.1.5",
"pug": "2.0.3",
"pug-cli": "1.0.0-alpha6",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"vue-html-loader": "1.2.4",
"vue-loader": "15.7.0",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.9",
"webpack-cli": "3.3.0",
"webpack": "4.29.6",
"webpack-dev-server": "3.2.1"
},
"dependencies": {
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
}
}