-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "with-mdx-remote",
"version": "1.0.0",
"scripts": {
"dev:watch": "next",
"dev": "next-remote-watch ./posts",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix --cache && tsc --noEmit",
"generate:post": "node scripts/generate-blogpost.js"
},
"dependencies": {
"@loadable/component": "^5.13.2",
"date-fns": "^2.16.1",
"gray-matter": "^4.0.2",
"mdx-utils": "^0.2.0",
"minerva-ui": "^7.1.5",
"next": "10.0.0",
"next-mdx-remote": "^1.0.0",
"next-remote-watch": "0.2.0",
"next-seo": "^4.14.0",
"prism-react-renderer": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-live": "^2.2.2",
"react-markdown": "^4.3.1",
"reading-time": "^1.2.0",
"spotify-web-api-node": "^4.0.0",
"swr": "^0.3.6"
},
"license": "MIT",
"devDependencies": {
"@sindresorhus/slugify": "^1.1.0",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-cratebind": "^6.0.2",
"fake-useragent": "^1.0.1",
"husky": "^3.0.9",
"inquirer": "^7.3.3",
"json-to-pretty-yaml": "^1.2.2",
"lint-staged": "^10.4.0",
"mkdirp": "^1.0.4",
"opn": "^6.0.0",
"ora": "^5.1.0",
"prettier": "^2.1.2",
"tinify": "^1.6.0-beta.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc --noEmit"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache"
]
}
}