-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest"
},
"ts-standard": {
"project": "path/to/tsconfig.json"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.0.3",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.1.0",
"gray-matter": "^4.0.2",
"lodash": "^4.17.20",
"next": "^12.1.0",
"next-mdx-remote": "^2.1.1",
"next-seo": "^4.17.0",
"postcss": "^8.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"remark-mdx": "^1.6.22",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"standard": "^16.0.3",
"ts-standard": "^10.0.0",
"typescript": "^4.1.3"
}
}