-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
52
53
54
55
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "NODE_ENV=development next",
"build": "next build",
"start": "MODE=dev NODE_ENV=development next start",
"type-check": "tsc",
"export": "next export",
"netlify-deploy": "next build",
"export:prod": "MODE=prod NODE_ENV=production next build && MODE=prod NODE_ENV=production next export",
"export:dev": "MODE=dev NODE_ENV=development next build && MODE=dev NODE_ENV=development next export",
"lint": "next lint"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.6",
"moment": "^2.29.1",
"next": "^12.0.7",
"qrcode": "^1.4.4",
"query-string": "^7.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-json-view": "^1.21.3",
"react-responsive-carousel": "^3.2.21",
"react-scroll-fade-animation": "^0.5.3",
"sass": "^1.32.13",
"swiper": "^8.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@emotion/babel-plugin": "^11.3.0",
"@types/node": "^12.12.21",
"@types/qrcode": "^1.4.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"typescript": "4.0"
},
"license": "MIT"
}