-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 909 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 909 Bytes
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
{
"private": true,
"engines": {
"node": "^20"
},
"packageManager": "pnpm@9.7.0",
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"stylelint": "stylelint src/**/*.css --fix",
"lint": "next lint"
},
"dependencies": {
"next": "^13.3.2",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.13",
"@types/react": "^18.2.0",
"@types/webpack-env": "^1.18.5",
"eslint": "^8.39.0",
"eslint-config-next": "13.3.2",
"jest": "^27.5.1",
"raw-loader": "^4.0.2",
"typescript": "^4.9.5"
}
}