-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"private": true,
"name": "jzd-website",
"version": "1.0.0",
"license": "MIT",
"author": "JulienZD",
"scripts": {
"dev": "npm run clean && next dev",
"build": "npm run clean && next build",
"start": "next start",
"export": "npm run build && next export",
"clean": "npx rimraf .next"
},
"dependencies": {
"color-contrast": "^1.0.0",
"gray-matter": "^4.0.3",
"next": "^12.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-loader-spinner": "^4.0.0",
"reactstrap": "^9.0.0",
"remark": "^14.0.1",
"remark-html": "^15.0.0",
"remark-images": "^3.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.1",
"@tailwindcss/forms": "^0.3.4",
"@types/node": "^16.11.6",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^10.2.4",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.1",
"eslint-config-prettier": "^8.1.0",
"postcss": "^8.3.11",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.4",
"typescript": "^4.4.4"
}
}