-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.67 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
{
"name": "frontendwebstarterpack",
"version": "1.0.0",
"description": "my tools stack for built a modern web apps",
"main": "index.js",
"scripts": {
"start-dev": "webpack-dev-server --config webpack.dev.js",
"start-dev-sw": "webpack-dev-server --config webpack.dev.sw.js",
"build-local": "webpack --config webpack.prod.analyzer.js",
"build": "npm run test && webpack --config webpack.prod.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimasmds/frontend-web-starter-pack.git"
},
"author": "Dimas Saputra",
"license": "ISC",
"bugs": {
"url": "https://github.com/dimasmds/frontend-web-starter-pack/issues"
},
"homepage": "https://github.com/dimasmds/frontend-web-starter-pack#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@jest/globals": "^26.6.0",
"@open-wc/testing": "^2.5.29",
"@open-wc/testing-helpers": "^1.8.10",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-builtin-classes": "^0.6.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^4.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-lit": "^1.2.2",
"extract-loader": "^5.1.0",
"html-webpack-injector": "^1.1.4",
"html-webpack-plugin": "^4.5.0",
"identity-obj-proxy": "^3.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^26.6.0",
"jest-config": "^26.6.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-matcher-utils": "^26.6.0",
"jest-puppeteer": "^4.4.0",
"lit-scss-loader": "^1.0.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"puppeteer": "^5.3.1",
"sass": "^1.27.0",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"ts-loader": "^8.0.6",
"typescript": "^4.0.2",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.5.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"regenerator-runtime": "^0.13.7"
}
}