-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
54
55
56
57
58
{
"name": "tf-static-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*.js' --fix",
"prettier": "prettier --write '**/*.js'"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"bootstrap": "^4.5.0",
"bs58": "^4.0.1",
"graphql": "^15.1.0",
"graphql-request": "^2.0.0",
"graphql-tag": "^2.10.3",
"next": "9.4.4",
"react": "16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "16.13.1",
"html-react-parser": "^0.13.0",
"react-image-gallery": "^1.0.7",
"react-images": "^1.1.7",
"react-instagram-embed": "^1.5.0",
"react-lazyload": "^2.6.7",
"react-loading-skeleton": "^2.1.1",
"react-photo-gallery": "^8.0.0",
"react-progressive-image": "^0.6.0",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}