-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "msrcodes-site",
"version": "1.0.0",
"description": "Personal website",
"repository": "[email protected]:mikaelsrozee/msr.codes.git",
"author": "Mikael Rozee <[email protected]>",
"license": "UNLICENSED",
"private": false,
"scripts": {
"build": "next build",
"clean": "gts clean",
"dev": "next dev",
"export": "next build && next export",
"fix": "gts fix",
"lint": "gts lint",
"prepare": "husky install",
"start": "next start"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.1",
"@types/node": "^14.11.2",
"@types/react": "^17.0.19",
"@types/tmi.js": "^1.8.1",
"autoprefixer": "^10.4.4",
"eslint": "^7.32.0",
"gts": "^3.1.0",
"lint-staged": ">=10",
"husky": ">=6",
"next": "^12.1.0",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
},
"dependencies": {
"next-seo": "^4.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint"
}
}