-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
{
"name": "lowenwaresite",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:export": "next build && next export",
"lint": "eslint src/",
"lint:md": "markdownlint -c markdownlint.json content/",
"lint:fix": "eslint src/ --fix "
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"firebase": "^9.9.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.5.1",
"markdown-it": "^13.0.1",
"markdownlint": "^0.26.0",
"markdownlint-cli": "^0.31.1",
"next": "12.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-markdown": "^8.0.3",
"svg-sprite-loader": "^6.0.11",
"webp-loader": "^0.6.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.4",
"typescript": "4.7.4"
}
}