-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.76 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
{
"name": "rollup-changes-minimal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:basic": "rimraf dist && rollup -c demo/js/rollup.basic.config.js",
"build:spa": "rimraf dist && rollup -c demo/js/rollup.spa.config.js",
"build:spa-nomodule": "rimraf dist && rollup -c demo/js/rollup.spa-nomodule.config.js",
"build:babelrc": "rimraf dist && rollup -c demo/babelrc/rollup.config.js",
"start:demo": "es-dev-server --app-index demo/js/index.html --open --compatibility none",
"start:build": "es-dev-server --root-dir dist --compatibility none --open",
"start:spa": "npm run build:spa && npm run start:build",
"start:spa-nomodule": "npm run build:spa-nomodule && npm run start:build",
"start:babelrc": "npm run build:babelrc && npm run start:build",
"start:watch": "npm run build:spa-nomodule -- --watch & npm run start:build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/helper-module-imports": "^7.8.3",
"@babel/helpers": "^7.9.2",
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-modules-amd": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-modules-systemjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-modules": "^0.1.3",
"@babel/runtime": "^7.9.2",
"@open-wc/building-utils": "^2.15.1",
"@open-wc/rollup-plugin-html": "^0.3.3",
"@open-wc/rollup-plugin-polyfills-loader": "^0.4.3",
"@rollup/plugin-node-resolve": "^7.1.1",
"acorn-optional-chaining": "0.0.3",
"babel-plugin-bundled-import-meta": "^0.3.2",
"babel-plugin-template-html-minifier": "^4.0.0",
"browserslist": "^4.9.1",
"deepmerge": "^4.2.2",
"magic-string": "^0.25.7",
"parse5": "^5.1.1",
"rollup-plugin-babel": "^5.0.0-alpha.1",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-workbox": "^5.0.1",
"terser": "^4.6.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@open-wc/eslint-config": "^2.0.0",
"@open-wc/prettier-config": "^0.1.10",
"es-dev-server": "^1.43.0",
"eslint": "^6.1.0",
"lit-element": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.0.0"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config"
}