-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "nextjs-woocommerce",
"version": "1.2.3",
"private": true,
"scripts": {
"lhci": "lhci autorun",
"lhci:perf": "lhci autorun --collect.settings.preset=perf",
"lhci:desktop": "lhci autorun --collect.settings.preset=desktop",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,ts,tsx,json}\"",
"playwright": "npx playwright test",
"playwright:ui": "npx playwright test --ui",
"playwright:debug": "npx playwright test --debug",
"playwright:codegen": "playwright codegen",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i && npm run format"
},
"keywords": [
"next.js",
"next",
"javascript",
"framer"
],
"author": "w3bdesign",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.13.4",
"@types/react": "^19.0.10",
"algoliasearch": "^4.24.0",
"autoprefixer": "^10.4.21",
"framer-motion": "12.4.11",
"graphql": "^16.10.0",
"lodash": "^4.17.21",
"next": "15.2.1",
"nprogress": "^0.2.0",
"postcss": "^8.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"react-instantsearch-dom": "^6.40.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.51.0",
"@types/lodash": "^4.17.16",
"@types/node": "22.13.10",
"@types/nprogress": "^0.2.3",
"@types/react-instantsearch-dom": "^6.12.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"babel-plugin-styled-components": "^2.1.4",
"eslint-config-next": "^15.2.1",
"postcss-preset-env": "^10.1.5",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
}
}