-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "aperowebnancy-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"test:watch": "jest --watch",
"test": "jest",
"build": "next build",
"postbuild": "next-sitemap && node ./scripts/generate-images/index.js",
"export": "next export && yarn build:rss",
"build:rss": "node ./.next/server/scripts/build-rss.js",
"start": "next start",
"generate-images": "node scripts/generate-images/index.js",
"doctoc": "doctoc ./.github/CONTRIBUTING.md",
"lint": "eslint .",
"format": "prettier --write --check \"**/*.+(js|md|mdx|json)\""
},
"dependencies": {
"@mdx-js/loader": "^1.6.16",
"@mdx-js/runtime": "^1.6.16",
"@next/mdx": "^9.5.2",
"@tailwindcss/typography": "^0.2.0",
"fast-glob": "^3.2.4",
"gray-matter": "^4.0.2",
"next": "9.5.2",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"sass": "^1.26.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"babel-jest": "^26.5.0",
"doctoc": "^1.4.0",
"eslint": "^7.6.0",
"eslint-config-zyhou": "^0.0.15",
"eslint-plugin-mdx": "^1.15.1",
"husky": "^4.2.5",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.5.0",
"lint-staged": "^10.2.11",
"msw": "^0.21.2",
"next-sitemap": "^1.2.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"puppeteer": "^5.3.1",
"rss": "^1.2.2",
"tailwindcss": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md}": "prettier --write"
}
}