generated from maael/next-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "next-template",
"version": "1.0.0",
"main": "index.js",
"author": "Matthew Elphick <[email protected]> (https://mael.tech)",
"license": "MIT",
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start",
"prettier": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore",
"initial-options": "ts-node -r dotenv-extended/config src/scripts/initial-options.ts",
"create-challenge": "ts-node -r dotenv-extended/config src/scripts/create-challenge.ts",
"migrate-options": "ts-node -r dotenv-extended/config src/scripts/migrate-options.ts",
"danger:reset": "ts-node -r dotenv-extended/config src/scripts/reset.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,mdx,css}": "yarn prettier",
"*.{js,jsx,tsx,ts}": [
"eslint --fix",
"yarn prettier"
]
},
"dependencies": {
"@tanstack/react-query": "^4.10.3",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"fathom-client": "^3.5.0",
"leaflet": "^1.9.2",
"mongoose": "^6.6.5",
"next": "^12.3.1",
"next-auth": "^4.13.0",
"next-progress": "^2.2.0",
"next-seo": "^5.5.0",
"react": "^18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-leaflet": "^4.1.0",
"react-range": "^1.8.14"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@next/eslint-plugin-next": "^12.3.1",
"@types/bcryptjs": "^2.4.2",
"@types/leaflet": "^1.8.0",
"@types/node": "^18.8.2",
"@types/nodemailer": "^6.4.6",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.12",
"dotenv-extended": "^2.9.0",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemailer": "^6.8.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]"
}