-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "slotify",
"version": "0.0.0",
"description": "Web component slots if you support them -- psuedo slots if you don't!",
"main": "index.js",
"author": "Salem Ghoweri <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack --watch",
"build": "NODE_ENV=production webpack",
"lint": "eslint src/**/*.js --fix && prettier src/**/*.js --write"
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@webcomponents/webcomponentsjs": "^2.3.0",
"@webcomponents/template": "^1.4.1",
"get-own-property-symbols": "^0.9.2",
"promise-polyfill": "^8.0.0",
"@babel/runtime-corejs3": "^7.6.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"core-js": "^3.3.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"copy-webpack-plugin": "^5.0.4",
"@babel/plugin-proposal-decorators": "^7.6.0",
"lit-element": "2.2.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@webcomponents/custom-elements": "^1.3.0",
"@webcomponents/shadycss": "^1.9.2",
"@webcomponents/shadydom": "^1.6.1",
"@webcomponents/url": "^0.7.4",
"babel-preset-minify": "^0.4.3",
"style-loader": "^1.0.0",
"sass-loader": "^8.0.0",
"raw-loader": "^3.1.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"autoprefixer": "^9.6.5",
"babel-loader": "^8.0.6",
"terser-webpack-plugin": "^2.2.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"cssnano": "^4.1.10",
"nunjucks": "^3.2.0",
"nunjucks-webpack-plugin": "^5.0.0",
"css-loader": "^3.2.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"@open-wc/eslint-config": "^1.0.0",
"@open-wc/prettier-config": "^0.1.10",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"webpack-merge": "^4.2.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"prettier": "^1.18.2",
"directory-named-webpack-plugin": "^4.0.1"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --ignore-path .eslintignore --fix",
"prettier --write",
"git add"
]
}
}