-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "ostem-conference-site",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"hook:pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.18",
"clsx": "^1.1.1",
"date-fns": "^2.18.0",
"next": "^12.3.4",
"next-images": "^1.8.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^12.3.4",
"@svgr/webpack": "^6.5.1",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^10.4.19",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.4.38",
"prettier": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}