generated from hungdoansy/nextjs-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"description": "my personal site",
"keywords": [
"nextjs",
"typescript"
],
"author": "Sy-Hung Doan <[email protected]>",
"engines": {
"node": "^16.0.0",
"yarn": "^1.0.0"
},
"scripts": {
"new": "zx scripts/createArticle.mjs",
"dev": "NODE_OPTIONS='--inspect' PORT=3311 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier './**/*.{js,jsx,ts,tsx,css,md,json,yml}' --check --config ./.prettierrc",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,yml,yaml}' --config ./.prettierrc"
},
"dependencies": {
"@atlaskit/css-reset": "6.3.4",
"@styled-jsx/plugin-sass": "4.0.2",
"axios": "0.24.0",
"highlight.js": "11.5.0",
"highlightjs-focus": "1.3.3",
"marked": "4.0.7",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-use": "17.4.0",
"sass": "1.45.2"
},
"devDependencies": {
"@types/marked": "4.0.2",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.2.1",
"prompts": "2.4.2",
"typescript": "4.3.2",
"zx": "7.0.8"
}
}