-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
101 lines (101 loc) · 3.06 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
100
101
{
"name": "lifestonechurch.net",
"description": "Lifestone Church Website",
"version": "1.0.0",
"author": "Adam Garrett-Harris <[email protected]>",
"dependencies": {
"downshift": "^2.2.2",
"emotion": "^8.0.12",
"emotion-server": "^8.0.12",
"gatsby": "^2.0.14",
"gatsby-image": "^2.0.13",
"gatsby-link": "^2.0.3",
"gatsby-plugin-emotion": "^2.0.5",
"gatsby-plugin-feed": "^2.0.6",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.4",
"gatsby-plugin-netlify": "^2.0.0",
"gatsby-plugin-nprogress": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-plugin-typography": "^2.2.2",
"gatsby-source-contentful": "^2.0.1",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-sharp": "^2.1.3",
"humanize-list": "^1.0.1",
"luxon": "^1.3.2",
"match-sorter": "^2.3.0",
"prop-types": "^15.6.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-emotion": "^8.0.12",
"react-helmet": "^5.2.0",
"react-image-gallery": "0.8.11",
"react-redux": "^5.1.0",
"react-typography": "^0.16.13",
"remarkable": "^1.7.1",
"slug": "^0.9.1",
"typography": "^0.16.17",
"typography-theme-bootstrap": "^0.16.7"
},
"devDependencies": {
"@babel/core": "^7.1.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"dotenv": "^4.0.0",
"gh-pages": "^2.0.1",
"husky": "^1.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.9.2",
"react-test-renderer": "^16.5.2"
},
"keywords": ["gatsby", "church", "website"],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b gh-pages",
"format": "prettier --write 'src/**/*.js'",
"test": "jest",
"precommit": "npm run format"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-preprocess.js"
},
"testRegex": "/.*(__tests__\\/.*)|(.*(test|spec))\\.jsx?$",
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js"
},
"testPathIgnorePatterns": ["node_modules", ".cache"],
"transformIgnorePatterns": ["node_modules/(?!(gatsby)/)"],
"globals": {
"__PATH_PREFIX__": ""
},
"testURL": "http://localhost",
"setupFiles": ["<rootDir>/loadershim.js"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}