forked from grandemayta/webcomponents-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "webcomponents-scaffolding",
"version": "2.0.0",
"author": {
"name": "Gabriel Mayta",
"email": "[email protected]"
},
"scripts": {
"pretest": "eslint . --fix",
"start": "webpack-dev-server --config scripts/webpack.local.js",
"dev": "webpack --config scripts/webpack.dev.js",
"prod": "webpack --config scripts/webpack.prod.js"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.1.3",
"core-js": "^2.5.7",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.4.2",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^2.1.1",
"custom-event-polyfill": "^1.0.6",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.23.0",
"eslint-plugin-prettier": "^2.6.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"intersection-observer": "^0.5.1",
"path": "^0.12.7",
"prettier": "^1.13.7",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.4"
},
"license": "MIT"
}