This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "abhijithvijayan-website",
"version": "1.0.0",
"node": ">=10",
"private": true,
"author": "abhijithvijayan",
"description": "Website of abhijithvijayan",
"repository": "https://github.com/abhijithvijayan/v6.git",
"license": "MIT",
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build",
"export": "next export",
"serve": "next build && next export",
"release": "yarn serve && touch out/.nojekyll",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
"git add"
]
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"animate.css": "^3.7.2",
"axios": "^0.19.2",
"body-scroll-lock": "^2.6.4",
"bootstrap": "^4.4.1",
"hamburgers": "^1.1.3",
"html-react-parser": "^0.10.1",
"marked": "^0.8.0",
"next": "^9.3.2",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^1.0.3",
"next-images": "^1.3.1",
"next-offline": "^4.0.6",
"normalize.css": "^8.0.1",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.12.0",
"react-sidebar": "^3.0.2",
"styled-components": "^4.4.1",
"tiny-frontmatter": "^1.0.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "1.4.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.5",
"raw-loader": "^3.1.0",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.4.0",
"sass-extract-loader": "^1.1.0"
}
}