-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 3.2 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "next-portfolio",
"version": "0.5.0",
"description": "My personal website, blog and library demo playground, built from scratch with Next.js",
"author": "Tim Ellenberger <[email protected]>",
"license": "MIT",
"repository": "tim-soft/react-portfolio",
"bugs": {
"url": "https://github.com/tim-soft/react-portfolio/issues"
},
"homepage": "https://timellenberger.com",
"engines": {
"node": ">=14"
},
"dependencies": {
"@react-spring/web": "9.2.1",
"@tim-soft/react-dat-gui": "^4.0.11",
"color": "^3.1.3",
"get-best-contrast-color": "^0.3.1",
"get-contrast-ratio": "^0.2.1",
"hex-rgb": "^5.0.0",
"is-hexcolor": "^1.0.0",
"lodash.merge": "^4.6.2",
"next": "^10.2.3",
"next-offline": "^5.0.5",
"next-seo": "^4.24.0",
"nice-color-palettes": "^3.0.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight": "0.12.0",
"react-icons": "^4.2.0",
"react-is": "^17.0.2",
"react-lazy-images": "^1.1.0",
"react-particles-webgl": "^1.0.10",
"react-photo-gallery": "^8.0.0",
"react-scrollbars-custom": "^4.0.25",
"react-spring-lightbox": "1.6.0",
"react-switch": "^6.0.0",
"stringify-object": "^3.3.0",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7",
"three": "^0.114.0",
"use-double-click": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/node": "^7.14.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "2.3.0",
"stylelint": "^13.2.1",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{js, jsx}": [
"prettier --write",
"stylelint",
"eslint --no-ignore --fix",
"git add --force"
]
},
"scripts": {
"dev": "next",
"now-build": "next build",
"start": "next start",
"generate-sitemap": "babel-node ./tools/generate-sitemap",
"fix:prettier": "prettier --write \"**/*.*\"",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint:styles": "stylelint \"./**/*.{js,jsx}\"",
"lint:prettier": "prettier --check \"**/*.*\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"react-color": "2.18.0"
}
}