-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.06 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
{
"name": "vue-rollup-boilerplate",
"version": "0.0.1",
"description": "a rollup boilerplate for vue project",
"module": "es/index.js",
"main": "lib/index.js",
"browser": "es/index.js",
"scripts": {
"start": "node fileServer.js ./",
"dev": "concurrently \"npm start\" \"rollup -c ./build/rollup.dev.js -w\"",
"build": "rollup -c ./build/rollup.pro.js"
},
"author": "shayeLee",
"license": "ISC",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/shayeLee/vue-rollup-boilerplate.git"
},
"bugs": {
"url": "https://github.com/shayeLee/vue-rollup-boilerplate/issues",
"email": "[email protected]"
},
"homepage": "",
"devDependencies": {
"@babel/core": "~7.4.0",
"@babel/plugin-proposal-class-properties": "~7.2.1",
"@babel/plugin-proposal-decorators": "~7.2.0",
"@babel/plugin-syntax-dynamic-import": "~7.2.0",
"@babel/plugin-transform-modules-commonjs": "~7.4.0",
"@babel/plugin-transform-runtime": "~7.4.0",
"@babel/preset-env": "~7.1.6",
"concurrently": "^4.1.0",
"rollup": "~1.6.0",
"rollup-plugin-babel": "~4.3.2",
"rollup-plugin-commonjs": "~9.2.1",
"rollup-plugin-node-resolve": "~4.0.1",
"rollup-plugin-replace": "~2.1.0",
"rollup-plugin-sass": "~1.1.0",
"rollup-plugin-uglify": "~6.0.2",
"rollup-plugin-vue": "~5.0.0",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@babel/runtime": "~7.4.3",
"rxjs": "~6.4.0",
"vue": "^2.6.10"
},
"browserslist": [
"> 1%",
"Chrome 45",
"IE 11"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
"@babel/plugin-transform-runtime",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}