-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "portfoliosite",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"format": "prettier --write \"(pages|components|styles|utils|news)/**/*.{js,jsx,ts,tsx,css,json,md}\"",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"vuln": "python ./utils/IPAVulnerability/vuln.py"
},
"lint-staged": {
"*.{css,less,sass,scss}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-anchor-link-smooth-scroll": "^1.0.2",
"@types/react-hint": "^3.2.0",
"@types/react-pdf": "^5.0.9",
"@types/react-slick": "^0.23.8",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/webpack-env": "^1.16.3",
"bootstrap": "^5.1.3",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"fast-sha256": "^1.3.0",
"file-loader": "^6.2.0",
"gray-matter": "^4.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-bootstrap": "^2.2.0",
"react-hint": "^3.2.1",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.0",
"react-pdf": "^5.7.1",
"react-share": "^4.4.0",
"react-slick": "^0.28.1",
"react-syntax-highlighter": "^15.4.5",
"remark": "^14.0.2",
"slick-carousel": "^1.8.1",
"typescript": "^4.6.2",
"webpack": "^5.47.0"
}
}