-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "dotrix-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:export": "next build && next export",
"start": "next start",
"lint": "eslint src/",
"lint:md": "markdownlint content/",
"lint:fix": "eslint src/ --fix "
},
"dependencies": {
"@svgr/webpack": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"babel-plugin-styled-components": "^2.0.7",
"classnames": "^2.3.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.5.1",
"markdown-it": "^13.0.1",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.34",
"@types/react": "^18.0.9",
"autoprefixer": "^10.4.7",
"babel-plugin-root-import": "^6.6.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"imagemin-svgo": "9.0.0",
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.1",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
}
}