-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "nextjs-woocommerce-storefront",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx --fix",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.+(ts|tsx)": [
"eslint --fix",
"git add"
],
"./src/**/*.+(css|scss|js)": "prettier --write"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@next/bundle-analyzer": "^10.0.7",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.11.0",
"jsonwebtoken": "8.5.1",
"next": "^12.3.4",
"next-auth": "^4.24.5",
"postcss": "^8.4.31",
"react": "^17.0.2",
"react-cookie-consent": "^6.2.1",
"react-dom": "^17.0.2",
"react-hook-form": "^6.14.1",
"react-icons": "^3.11.0",
"stripe": "^8.132.0",
"styled-components": "^5.1.1",
"swr": "^0.4.0"
},
"devDependencies": {
"@builder.io/partytown": "^0.8.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/next-auth": "^3.1.24",
"@types/node": "^14.14.20",
"@types/react": "^16.14.51",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.17.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"next-sitemap": "^1.4.5",
"prettier": "^2.2.1",
"typescript": "^4.9.3"
}
}