-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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": "wigxel-nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": " next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && echo 'Lint complete.'",
"watch": "watch 'clear && npm run -s lint' pages components",
"prepare": "husky install"
},
"dependencies": {
"@sendgrid/client": "^7.6.2",
"@sendgrid/mail": "^7.6.2",
"@supabase/supabase-js": "^1.35.2",
"@types/react-icons": "^3.0.0",
"@types/react-scroll": "^1.8.3",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"lottie-web": "^5.9.4",
"next": "^12.1.1",
"randomatic": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gtm-module": "^2.0.11",
"react-icons": "^4.3.1",
"react-scroll": "^1.8.7",
"styled-components": "^5.3.5",
"tailwindcss": "^3.0.13"
},
"devDependencies": {
"@svgr/webpack": "^6.0.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/styled-components": "^5.1.24",
"autoprefixer": "^10.4.2",
"eslint": "7",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"postcss": "^8.4.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"typescript": "^4.6.3",
"watch": "^0.13.0"
},
"keywords": [
"wigxel",
"boilerplate",
"nextjs"
],
"lint-staged": {
"*/**": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.ts": "npm run -s lint"
},
"msw": {
"workerDirectory": "public"
}
}