-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 940 Bytes
/
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
{
"name": "pycon-china-2021",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn run gen && next build",
"start": "next start",
"lint": "next lint",
"gen": "node tools/genCalendar.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"bulma": "^0.9.3",
"bulma-timeline": "^3.0.4",
"classnames": "^2.3.1",
"framer-motion": "^4.1.17",
"js-yaml": "^4.1.0",
"next": "11.1.0",
"next-export-i18n": "^2.1.0",
"next-seo": "^4.26.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^7.0.0",
"rehype-raw": "^6.1.0",
"remark-gfm": "^3.0.0",
"sass": "^1.38.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.3",
"@types/react": "17.0.19",
"dayjs": "^1.10.6",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"ical-generator": "^3.0.0",
"typescript": "4.3.5"
}
}