forked from jackleslie/dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 814 Bytes
/
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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next build && next dev -H 0.0.0.0",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"stylelint": "stylelint src/**/*.css --fix",
"lint": "next lint"
},
"dependencies": {
"next": "^12.0.8",
"next-themes": "^0.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.5.0",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/react": "^16.9.53",
"eslint": "^8.7.0",
"eslint-config-next": "12.0.8",
"jest": "^27.4.7",
"raw-loader": "^4.0.1",
"typescript": "^4.5.4"
}
}