-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "nextjs-woocommerce",
"version": "1.2.1",
"private": true,
"scripts": {
"dev": "next dev",
"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.12.5",
"@types/react": "^18.3.18",
"algoliasearch": "^4.24.0",
"autoprefixer": "^10.4.20",
"framer-motion": "11.15.0",
"graphql": "^16.10.0",
"lodash": "^4.17.21",
"next": "^14.2.23",
"nprogress": "^0.2.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-instantsearch-dom": "^6.40.4",
"uuid": "^11.0.5"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/lodash": "^4.17.14",
"@types/node": "22.10.5",
"@types/nprogress": "^0.2.3",
"@types/react-instantsearch-dom": "^6.12.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"babel-plugin-styled-components": "^2.1.4",
"eslint-config-next": "^14.2.23",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}