-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.99 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
99
{
"name": "jeff-lupinski",
"description": "Portfolio",
"version": "1.0.0",
"private": true,
"dependencies": {
"aphrodite": "^2.2.3",
"classnames": "^2.2.6",
"framer-motion": "^3.10.0",
"gatsby": "^2.32.13",
"gatsby-image": "^2.0.13",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-styled-components": "^3.0.0",
"gatsby-source-filesystem": "^2.0.3",
"gatsby-transformer-sharp": "^2.1.3",
"graphql": "^0.13.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-lottie": "^1.2.3",
"react-responsive": "^6.0.1",
"react-spring": "^8.0.25",
"react-stagger": "^1.0.1",
"react-waypoint": "^9.0.2",
"react-with-direction": "^1.3.0",
"react-with-styles": "^3.0.0",
"react-with-styles-interface-aphrodite": "^5.0.1",
"sharp": "^0.30.7",
"styled-components": "^4.1.3",
"tachyons-sass": "^4.9.3"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"eslint": "eslint \"src/**/*.js\"",
"stylelint": "stylelint \"src/**/*.scss\"",
"lint": "yarn eslint && yarn stylelint",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "9.x",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-remove-graphql-queries": "^2.5.0",
"babel-plugin-styled-components": "^1.9.2",
"babel-runtime": "^6.26.0",
"eslint": "5.x",
"eslint-config-react-app": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.5.0",
"gatsby-plugin-eslint": "^2.0.1",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-stylelint": "^2.0.0",
"husky": "^1.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react-testing-library": "^5.2.0",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.3.1",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.28.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
}
}