forked from michelemazzucco/michelemazzucco.it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 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
{
"name": "michelemazzucco.it",
"version": "1.0.0",
"description": "Michele Mazzucco's personal portfolio website",
"main": "n/a",
"scripts": {
"dev": "gatsby develop",
"clean": "rimraf ./public",
"build": "npm run clean && gatsby build",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint './src/**/*.js'",
"precommit": "npm run lint:css && npm run lint:js",
"gzip": "gzip -r public",
"deploy": "./scripts/deploy.js",
"pubblish": "npm run build && npm run deploy"
},
"keywords": [
"react",
"gatsby",
"portfolio"
],
"author": "Michele Mazzucco <[email protected]>",
"license": "MIT",
"browserslist": [
"last 5 versions",
"Edge >= 12",
"IE >= 9"
],
"dependencies": {
"dotenv": "^6.2.0",
"file-loader": "^3.0.1",
"gatsby": "^2.13.62",
"gatsby-link": "^2.2.5",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-google-analytics": "^2.1.7",
"gatsby-plugin-manifest": "^2.2.5",
"gatsby-plugin-react-helmet": "^3.1.3",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sitemap": "^2.2.6",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.1.9",
"gatsby-transformer-json": "^2.2.2",
"idx": "^2.5.6",
"lodash.assign": "^4.2.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-responsive-carousel": "^3.1.50",
"styled-components": "^4.3.2",
"styled-reset": "^1.7.1",
"url-loader": "^1.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^3.6.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^1.3.1",
"rimraf": "^2.7.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
}
}