-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.61 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
{
"name": "lipstickwineandheels",
"description": "My personal blog",
"version": "1.0.0",
"author": "Jamena McInteer <[email protected]>",
"bugs": {
"url": "https://github.com/ndjamenamarmon/lipstickwineandheels/issues"
},
"dependencies": {
"disqus-react": "^1.0.5",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"enzyme-to-json": "^3.3.4",
"gatsby-image": "^2.4.21",
"gatsby-link": "^2.4.16",
"gatsby-plugin-google-analytics": "^2.3.19",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-page-transitions": "^1.0.8",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-sitemap": "^2.4.17",
"gatsby-source-contentful": "^3.0.6",
"gatsby-transformer-remark": "^2.8.47",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"lodash": "^4.17.4",
"raf": "^3.4.0",
"react": "^17.0.1",
"react-addons-shallow-compare": "^15.6.2",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-test-renderer": "^16.4.2"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"chalk": "^2.4.1",
"contentful-import": "^7.0.4",
"eslint": "^4.15.0",
"eslint-plugin-react": "^7.5.1",
"gatsby": "^2.24.91",
"gh-pages": "^1.2.0",
"inquirer": "^6.0.0",
"prettier": "^1.10.2",
"react-social-icons": "^3.0.0",
"reading-time": "^1.1.3",
"rimraf": "^2.6.2",
"yargs-parser": "^10.1.0"
},
"homepage": "https://github.com/ndjamenamarmon/lipstickwineandheels#readme",
"keywords": [
"gatsby",
"contentful"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/ndjamenamarmon/lipstickwineandheels.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "jest --config=jest.config.json",
"test-coverage": "jest --config=jest.config.json --coverage --collectCoverageFrom=src/**/*.js",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md' 'bin/*.js'",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix *.js bin/*.js",
"postinstall": "node ./bin/hello.js",
"setup": "node ./bin/setup.js",
"heroku-postbuild": "gatsby build",
"cleanup-repository": "rimraf bin contentful && npm uninstall contentful-import chalk inquirer rimraf "
}
}