-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "ud-redesign",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build:dev": "next build",
"build": "next build && next export",
"start": "next start && next export",
"start:dev": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"pre-commit": "npm run lint"
},
"dependencies": {
"@fontsource/josefin-sans": "^4.5.1",
"@fontsource/open-sans": "^4.5.2",
"@fontsource/quicksand": "^4.5.1",
"@fontsource/raleway": "^4.5.0",
"@fontsource/roboto": "^4.5.1",
"@fontsource/roboto-mono": "^4.5.0",
"@fontsource/source-sans-pro": "^4.5.1",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"sass": "^1.44.0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/react": "17.0.30",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"husky": "^7.0.4",
"typescript": "4.4.4"
}
}