-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
53
{
"name": "react-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"generator": "node ./articles/script/script.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^13.9.5",
"@types/react": "^16.9.27",
"axios": "^0.19.2",
"dayjs": "^1.8.23",
"next": "^9.3.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"sass": "^1.26.3",
"swr": "^0.2.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.4",
"eslint": "^6.8.0",
"eslint-config-alloy": "^3.6.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.0.10",
"node-fetch": "^2.6.0",
"prettier": "^2.0.2"
}
}