-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "thetowerphs.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luketio/thetowerphs.com.git"
},
"scripts": {
"dev": "next dev",
"start": "next build && next start",
"analyze": "ANALYZE=true next build",
"lint": "next lint --fix && prettier --write \"**/*.{ts,tsx}\"",
"postinstall": "prisma generate",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^3.15.0",
"@react-icons/all-files": "^4.1.0",
"dayjs": "^1.11.3",
"lodash": "^4.17.21",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sharp": "^0.30.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.6",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.41",
"@types/react": "^18.0.12",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"prisma": "^3.15.0",
"sass": "^1.52.2",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.3"
}
}