-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 2.54 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
{
"name": "storefront-search-as-you-type",
"version": "0.3.14",
"license": "MIT",
"engines": {
"npm": ">=10.0.0",
"node": ">=18.0.0"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check \"./**/*.{ts,tsx,js,css,json,md}\"",
"format:fix": "prettier --write \"./**/*.{ts,tsx,js,css,json,md}\""
},
"devDependencies": {
"@adobe/magento-storefront-events-sdk": "^1.5.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.6",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/styled-components": "^5.1.29",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"currency-symbol-map": "^5.1.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"lint-staged": "^13.3.0",
"mini-css-extract-plugin": "^2.7.6",
"preact-svg-loader": "^0.2.1",
"prettier": "^2.8.8",
"react-refresh-typescript": "^2.0.9",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.3",
"styled-components": "^5.3.11",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"typescript-plugin-styled-components": "^3.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"currency-symbol-map": "^5.1.0",
"preact": "^10.18.1",
"uuid": "^9.0.1"
}
}