-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 KB
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
{
"name": "nextjs-woocommerce",
"version": "1.2.4",
"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",
"doctor": "echo n | react-doctor --verbose",
"doctor:score": "echo n | react-doctor --score",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i && npm run format"
},
"keywords": [
"next.js",
"next",
"javascript",
"framer"
],
"author": "w3bdesign",
"license": "AGPL-3.0",
"dependencies": {
"@apollo/client": "^3.14.1",
"@types/react": "^19.2.14",
"algoliasearch": "^4.27.0",
"autoprefixer": "^10.5.0",
"graphql": "^16.13.2",
"lodash": "^4.18.1",
"motion": "^12.38.0",
"next": "16.2.3",
"nprogress": "^0.2.0",
"postcss": "^8.5.9",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-hook-form": "^7.72.1",
"react-instantsearch-dom": "^6.40.4",
"uuid": "^13.0.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@types/lodash": "^4.17.24",
"@types/node": "24.12.2",
"@types/nprogress": "^0.2.3",
"@types/react-instantsearch-dom": "^6.12.9",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"babel-plugin-styled-components": "^2.1.4",
"eslint-config-next": "^16.2.3",
"postcss-preset-env": "^11.2.1",
"prettier": "^3.8.2",
"react-doctor": "^0.0.33",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
}
}