-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.58 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
56
57
{
"name": "nextjs-typescript-template",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"be": "yarn build && yarn export",
"bet": "yarn be && npx serve out",
"type-check": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"main": "pages/index.tsx",
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.2.3",
"@rebass/preset": "^4.0.5",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@zeit/next-css": "^1.0.1",
"emotion-theming": "^10.0.27",
"humanize-string": "^2.1.0",
"next": "^10.2.3",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rebass": "^4.0.7",
"typescript": "^4.3.2"
},
"license": "ISC",
"keywords": [],
"description": "",
"devDependencies": {
"@types/mdx-js__react": "^1.5.3",
"@types/prismjs": "^1.16.5",
"@types/rebass": "^4.0.8",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"next-pwa": "^5.2.21",
"node-fetch": "^2.6.1",
"prettier": "^2.3.1",
"serve": "^12.0.0",
"yarn-upgrade-all": "^0.5.4"
}
}