-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint --ext .js,.ts,.jsx,.tsx --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.ts,.jsx,.tsx --ignore-path .gitignore .",
"tunnel": "lt -h \"http://serverless.social\" -p 3000",
"open": "netlify open"
},
"dependencies": {
"next": "9.3.2",
"next-seo": "^4.4.0",
"p5": "^1.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-slick": "^0.25.2",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@types/node": "^13.9.5",
"@types/p5": "^0.9.0",
"@types/react": "^16.9.26",
"@types/react-slick": "^0.23.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"globby": "^11.0.0",
"husky": "^4.2.3",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.1.0",
"imagemin-svgo": "^7.1.0",
"lint-staged": "^10.0.9",
"localtunnel": "^2.0.0",
"modern-normalize": "^0.6.0",
"netlify": "^4.0.5",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.5.7",
"prettier": "^2.0.2",
"responsive-loader": "^1.2.0",
"sass": "^1.26.3",
"sharp": "^0.25.2",
"typescript": "^3.8.3",
"webp-loader": "^0.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}