-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "react-tech-commerce.js-site",
"version": "1.0.0",
"description": "An eCommerce site which uses Commerce.js to create the store and the Stripe gateway to allow customers checkout. This is in sandbox mode.",
"main": "index.tsx",
"private": true,
"scripts": {
"start-server": "cross-env SERVE=true webpack serve",
"watch-changes": "webpack --watch",
"build": "cross-env NODE_ENV=production webpack",
"build-dev": "webpack",
"clean-dist": "rd /s dist"
},
"repository": {
"type": "git",
"url": "[email protected]:asbhogal/React-Tech-Commerce.Js-Site.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/asbhogal/React-Tech-Commerce.Js-Site/issues"
},
"homepage": "https://github.com/asbhogal/React-Tech-Commerce.Js-Site",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"process": "^0.11.10",
"react-refresh": "^0.14.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@chec/commerce.js": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.2.2",
"@types/dompurify": "^3.0.5",
"dompurify": "^3.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-router-dom": "^6.21.1",
"zod": "^3.22.4"
}
}