-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.17 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
{
"name": "impaas-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write '{app,components,lib}/**/*.{ts,tsx}'"
},
"dependencies": {
"mime-types": "^2.1.35",
"mysql2": "^3.10.3",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.19",
"prettier": "^3.3.3",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"typescript": "^5"
},
"license": "MIT",
"contributors": [
{
"name": "Alexander Biraben-Renard",
"email": "[email protected]"
},
{
"name": "Brady Nicol",
"email": "[email protected]"
},
{
"name": "Illia Derevianko",
"email": "[email protected]"
},
{
"name": "Kishan Sambhi",
"email": "[email protected]"
},
{
"name": "Matthew Alex",
"email": "[email protected]"
}
]
}