-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
51
{
"name": "ppt-ui",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.19.0",
"yarn": "1.22.21"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"export": "next export",
"deploy": "next build && touch ./public/.nojekyll && git add out/ -f && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/react-helmet": "^6.1.5",
"@zeit/next-sass": "^1.0.1",
"antd": "^4.22.4",
"body-scroll-lock": "^4.0.0-beta.0",
"micro": "^9.4.1",
"next": "^13.4.9",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-countdown-now": "^2.1.2",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-html-parser": "^2.0.2",
"react-media": "^1.10.0",
"react-player": "^2.10.1",
"react-router-dom": "^6.3.0",
"react-router-hash-link": "^2.4.3",
"react-text-selection-popover": "^2.0.2"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "18.6.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-html-parser": "^2.0.2",
"@types/react-router-hash-link": "^2.4.5",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"sass": "^1.54.3",
"ts-jest": "^29.0.4",
"typescript": "4.7.4"
}
}