forked from codux-templates/e-commerce-reclaim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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": "e-commerce-reclaim",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc --noEmit",
"prettier:check": "prettier . -c"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@netlify/functions": "^2.8.2",
"@netlify/remix-adapter": "^2.5.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slider": "^1.2.1",
"@remix-run/node": "^2.15.0",
"@remix-run/react": "^2.15.0",
"@remix-run/serve": "^2.15.0",
"@wix/ecom": "^1.0.846",
"@wix/members": "^1.0.129",
"@wix/redirects": "^1.0.64",
"@wix/sdk": "^1.15.3",
"@wix/stores": "^1.0.297",
"classnames": "^2.5.1",
"fast-deep-equal": "^3.1.3",
"isbot": "^5.1.17",
"lodash.debounce": "^4.0.8",
"motion": "^11.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-remove-scroll": "^2.6.0",
"remix-utils": "^7.7.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@remix-run/dev": "^2.15.0",
"@remix-run/testing": "^2.15.0",
"@types/lodash": "^4.17.13",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@wixc3/define-remix-app": "^4.6.2",
"@wixc3/react-board": "^4.6.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"sass": "~1.82.0",
"typescript": "~5.7.2",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}