-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "rollup-starter-code-splitting",
"devDependencies": {
"@babel/preset-env": "^7.1.6",
"@types/jest": "^23.3.9",
"npm-run-all": "^4.1.3",
"rollup": "^0.67.3",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-buble": "^0.19.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^0.6.0",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-vue": "^4.3.2",
"serve": "^10.1.1",
"ts-jest": "^23.0.0",
"tslib": "^1.9.3",
"typescript": "^3.1.6",
"vue-template-compiler": "^2.5.17"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve public"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"bluebird": "^3.5.3",
"systemjs": "^2.1.1",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.2.0",
"vue-router": "^3.0.2",
"vuex": "^3.0.1",
"whatwg-fetch": "^3.0.0"
},
"targets": {
"ie": "11",
"chrome": "58"
}
}