generated from latipun7/webcomponents-webpack-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.93 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "a-la-dine",
"description": "Dine away the easy way 🍽😋",
"author": "Latipun <[email protected]> (https://latipun7.github.io)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12.8.3",
"yarn": ">=1.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/latipun7/aladine.git"
},
"scripts": {
"dev": "webpack serve --env mode=development",
"build": "webpack --env mode=production",
"type-check": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --check .",
"test": "jest",
"test:all": "yarn test && yarn test:e2e",
"test:e2e": "yarn test:chromium && yarn test:firefox && yarn test:webkit",
"test:chromium": "cross-env BROWSER=chromium JEST_TEST=e2e jest -c ./jest.e2e.config.ts",
"test:firefox": "cross-env BROWSER=firefox JEST_TEST=e2e jest -c ./jest.e2e.config.ts",
"test:webkit": "cross-env BROWSER=webkit JEST_TEST=e2e jest -c ./jest.e2e.config.ts",
"test:snap": "jest --updateSnapshot",
"scss-type": "tsm -e default -n none \"src/**/*.module.scss\"",
"postinstall": "husky install && playwright install-deps"
},
"dependencies": {
"@babel/runtime": "^7.16.5",
"@webcomponents/webcomponentsjs": "^2.6.0",
"axios": "^0.24.0",
"core-js": "^3.16.2",
"idb": "^6.1.5",
"lazysizes": "^5.3.2",
"navigo": "^8.11.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@jest/types": "^27.2.5",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.1",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/css-minimizer-webpack-plugin": "^3.2.0",
"@types/cssnano": "^4.0.1",
"@types/jest": "^26.0.24",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/node": "^15.12.3",
"@types/postcss-preset-env": "^6.7.3",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@types/webpack-dev-server": "^3.11.6",
"@types/webpack-env": "^1.16.3",
"@types/workbox-webpack-plugin": "^5.1.8",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.3.1",
"cssnano": "^5.0.14",
"eslint": "^7.32.0",
"eslint-config-ruppy-jest": "^2.0.0",
"eslint-config-ruppy-node": "^2.1.1",
"eslint-config-ruppy-ts": "^2.0.0",
"eslint-plugin-jest-playwright": "^0.7.1",
"expect-playwright": "^0.8.0",
"fake-indexeddb": "^3.1.7",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-playwright-preset": "^1.7.0",
"lint-staged": "^11.2.6",
"mini-css-extract-plugin": "^1.6.2",
"msw": "^0.35.0",
"playwright": "^1.17.2",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"resolve-url-loader": "^4.0.0",
"responsive-loader": "^3.0.0-2",
"sass": "^1.43.4",
"sass-loader": "^12.4.0",
"sharp": "^0.29.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typed-scss-modules": "^4.1.2",
"typescript": "^4.4.4",
"webpack": "^5.39.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.4.2"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "[email protected]"
}