-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
58
59
{
"name": "@reactjs-id/website",
"version": "1.0.0",
"description": "Source code for https://reactjs.id/",
"main": "N/A",
"repository": "https://github.com/reactjs-id/website",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"dev:watch": "next-remote-watch ./contents",
"build": "next build",
"postbuild": "next-sitemap && next-on-netlify",
"start": "next start",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"now-build": "cross-env BUILD_TARGET=serverless next build",
"test": "npm run type-check && npm run lint",
"type-check": "tsc --noEmit",
"validate": "yarn lint && yarn type-check"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "1.0.0",
"@emotion/cache": "^11.0.0",
"@emotion/react": "11.1.1",
"@emotion/server": "^11.0.0",
"@emotion/styled": "11.0.0",
"date-fns": "^2.16.1",
"framer-motion": "^2.9.5",
"gray-matter": "^4.0.2",
"htmr": "^0.9.2",
"modern-normalize": "^1.0.0",
"next": "^10.0.0",
"next-mdx-remote": "^1.0.0",
"next-on-netlify": "2.6.0",
"next-remote-watch": "^0.2.0",
"next-seo": "4.14.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"remark": "^13.0.0",
"remark-html": "^13.0.1"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/styled-jsx": "^2.2.8",
"cross-env": "^7.0.2",
"eslint": "7.12.1",
"eslint-config-blvd": "^1.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"netlify-shortener": "2.4.0",
"next-sitemap": "^1.2.20",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}