-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "website",
"version": "1.1.4",
"description": "Danv's personal website",
"scripts": {
"build": "gatsby build",
"develop": "gatsby clean && gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn develop",
"serve": "gatsby serve",
"lint": "eslint . --fix --ext js,jsx,ts,tsx",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"emotion-theming": "^11.0.0",
"gatsby": "^3.3.0",
"gatsby-plugin-catch-links": "^3.3.0",
"gatsby-plugin-emotion": "^6.3.0",
"gatsby-plugin-gdpr-cookies": "^2.0.0",
"gatsby-plugin-manifest": "^3.3.0",
"gatsby-plugin-nprogress": "^3.3.0",
"gatsby-plugin-offline": "^4.3.0",
"gatsby-plugin-react-helmet": "^4.3.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^3.3.0",
"gatsby-remark-copy-linked-files": "^4.0.0",
"gatsby-remark-images": "^5.0.0",
"gatsby-source-filesystem": "^3.3.0",
"gatsby-transformer-remark": "^4.0.0",
"gatsby-transformer-sharp": "^3.3.0",
"lodash.clamp": "^4.0.3",
"lodash.throttle": "^4.1.1",
"mdi-react": "^7.5.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-responsive-carousel": "^3.2.18",
"react-spring": "^9.1.1",
"react-use": "^17.2.3",
"react-use-gesture": "^9.1.3"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-gatsby-cloud": "^2.3.0",
"husky": "^6.0.0",
"lint-staged": "10.5.4",
"postcss": "^8.2.10",
"prettier": "2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Spring3/website.git"
},
"author": "Daniyil Vasylenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/Spring3/website/issues"
},
"homepage": "https://github.com/Spring3/website#readme",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write .",
"eslint --fix"
],
"*.md": [
"prettier --write ."
]
}
}