-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.11 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
{
"dependencies": {
"@ducanh2912/next-pwa": "^9.7.2",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.3",
"@next/third-parties": "^14.1.4",
"@types/mdx": "^2.0.10",
"classnames": "^2.3.2",
"next": "^14.0.2",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"sass": "^1.69.5",
"sharp": "^0.32.6"
},
"name": "2024.jsconfbp.com",
"description": "Jun 27-28 2024",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.2.2"
},
"scripts": {
"gdpr": "node scripts/gdpr-generate.js",
"dev": "next",
"prebuild": "npm run gdpr",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"format": "prettier . --write"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"lint-staged": {
"*.{js,css,md}": "npm run format"
}
}