-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"homepage": "https://covid.sda.untukkita.my.id",
"engine": {
"node": "16"
},
"license": "Apache-2.0",
"author": "UntukKita-id <[email protected]> (https://untukkita.my.id/)",
"scripts": {
"prepare": "husky install",
"fetch-data": "node ./lib/fetch-data.js",
"dev": "cross-env NODE_OPTIONS=--inspect next dev",
"analyze": "cross-env ANALYZE=true next build",
"format": "prettier --write \"./**/*.{js,jsx,html,json}\"",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,jsx}\"",
"test": "mocha",
"build": "yarn fetch-data && next build",
"postbuild": "next-sitemap",
"deploy": "yarn build && next export",
"start": "next start"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.1",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@mdx-js/loader": "^1.6.22",
"@next/bundle-analyzer": "^11.1.0",
"@next/eslint-plugin-next": "^11.1.0",
"@next/mdx": "^11.1.0",
"autoprefixer": "^10.2.6",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"critters": "^0.0.10",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.4",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-kentcdodds": "^19.1.1",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"gray-matter": "^4.0.3",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"mocha": "^9.0.3",
"mocha-eslint": "^7.0.0",
"next-mdx-remote": "^3.0.4",
"next-sitemap": "^1.6.164",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,css,md,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}