-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
100 lines (100 loc) · 3.46 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
{
"private": true,
"name": "@adobe/storefront-product-listing-page",
"version": "2.0.0",
"license": "MIT",
"typings": "./dist/@types/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"dev": "webpack-dev-server --config webpack.dev.js",
"tailwind:build": "npx tailwindcss -i ./src/styles/tokens.css -o ./src/styles/index.css",
"storybook": "npx tailwindcss -i ./src/styles/tokens.css -o ./src/styles/index.css; storybook dev -p 6006",
"lint": "eslint '*/**/*.{ts,tsx}'",
"lint:fix": "eslint '*/**/*.{ts,tsx}' --fix",
"prettier:fix": "prettier 'src/**/*.{ts,tsx,json,md}' --write",
"test": "jest --passWithNoTests --color --silent",
"cleanup": "rimraf dist"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"currency-symbol-map": "^5.1.0",
"preact": "^10.18.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@adobe/magento-storefront-events-sdk": "^1.5.3",
"@babel/core": "^7.23.0",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@storybook/addon-a11y": "^7.4.5",
"@storybook/addon-actions": "^7.4.5",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/blocks": "^7.4.5",
"@storybook/preact": "^7.4.5",
"@storybook/preact-webpack5": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.6",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/preact": "^3.2.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.1",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"autoprefixer": "^10.4.16",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-tsconfig-paths": "^1.0.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"eslint": "^8.50.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.14",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-preset-preact": "^4.1.0",
"jest-styled-components": "^7.1.1",
"jest-transformer-svg": "^2.0.1",
"postcss": "^8.4.30",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.3",
"preact-render-to-string": "5.2.6",
"preact-svg-loader": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"storybook": "^7.4.5",
"style-loader": "^3.3.3",
"styled-components": "^6.0.8",
"tailwindcss": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"typescript-plugin-styled-components": "^3.0.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"yargs": "~17.7.2"
}
}