-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "nextjs-woocommerce",
"version": "1.1.4",
"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: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.7.9",
"@types/react": "^18.0.28",
"algoliasearch": "^4.14.3",
"autoprefixer": "^10.4.13",
"framer-motion": "9.1.6",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"next": "^13.2.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.2",
"react-instantsearch-dom": "^6.39.0",
"styled-components": "^5.3.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@playwright/test": "^1.31.1",
"@types/lodash": "^4.14.191",
"@types/node": "18.14.1",
"@types/nprogress": "^0.2.0",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.34.0",
"eslint-config-next": "^13.2.0",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
}
}