-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 5.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "gatsby-employee-directory",
"description": "Single Page web app employee directory built with React, Gatsby, Material Design Bootstrap, Webpack, ESLint, Prettier",
"version": "0.1.0",
"author": "Jacob Cavazos <[email protected]>",
"dependencies": {
"algoliasearch": "3.35.1",
"apollo-link": "1.2.13",
"apollo-utilities": "1.3.3",
"ci-info": "2.0.0",
"dotenv": "8.2.0",
"gatsby": "2.8.5",
"gatsby-cli": "2.7.20",
"gatsby-image": "2.2.7",
"gatsby-plugin-algolia": "0.5.0",
"gatsby-plugin-google-analytics": "2.1.4",
"gatsby-plugin-html-attributes": "1.0.5",
"gatsby-plugin-manifest": "2.2.4",
"gatsby-plugin-netlify": "2.1.3",
"gatsby-plugin-offline": "3.2.13",
"gatsby-plugin-react-helmet": "3.1.2",
"gatsby-plugin-robots-txt": "1.5.0",
"gatsby-plugin-sharp": "2.2.9",
"gatsby-plugin-sitemap": "2.2.3",
"gatsby-source-filesystem": "2.0.43",
"gatsby-source-graphql": "2.1.3",
"gatsby-transformer-sharp": "2.2.4",
"global": "4.4.0",
"graphql-config": "2.2.1",
"graphql-import": "0.7.1",
"mdbreact": "4.24.0",
"node-pre-gyp": "0.14.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-helmet": "5.2.1",
"react-instantsearch-dom": "5.7.0",
"react-popper": "1.3.7",
"react-router-dom": "5.2.0",
"rickmortyapi": "0.2.1",
"ts-invariant": "0.4.4",
"webpack": "4.43.0"
},
"peerDependencies": {
"graphql": "0.13",
"react-router-dom": "^5.0.0",
"webpack": "4.43.0"
},
"keywords": [
"gatsby",
"material-design",
"material-design-for-bootstrap",
"React",
"directory"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/node": "7.7.7",
"@babel/runtime": "7.7.7",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-preset-gatsby": "0.1.11",
"chokidar": "3.4.0",
"cross-env": "5.2.1",
"eslint": "5.16.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "6.11.0",
"eslint-loader": "2.2.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"flow-bin": "0.115.0",
"fs-extra": "7.0.1",
"gatsby-plugin-eslint": "2.0.8",
"glob": "7.1.6",
"husky": "2.7.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-junit": "6.4.0",
"jest-serializer-path": "0.1.15",
"lerna": "3.20.2",
"lint-staged": "8.2.1",
"markdown-magic": "0.2.1",
"npm-run-all": "4.1.5",
"plop": "1.9.1",
"prettier": "1.19.1",
"react-test-renderer": "16.8.6",
"rimraf": "2.6.3",
"svgo": "1.3.2",
"yargs": "10.1.2"
},
"eslintIgnore": [
"interfaces",
"**/__tests__/fixtures/"
],
"private": true,
"lint-staged": {
"*.{js,jsx}": [
"eslint --ignore-path .gitignore --ignore-path .prettierignore --fix",
"git add"
],
"*.{md,css,scss,yaml,yml}": [
"prettier --write",
"git add"
],
"*.svg": [
"svgo --pretty --indent=2 --config=svgo.yml --multipass",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged || node scripts/on-lint-error.js"
}
},
"scripts": {
"build": "yarn build",
"develop": "yarn develop",
"start": "yarn run develop",
"now-build": "gatsby build",
"bootstrap": "npm-run-all -s check-versions lerna-prepare",
"check-versions": "babel-node scripts/check-versions.js",
"format": "npm run format:code && npm run format:other && npm run format:svg",
"format:other": "npm run prettier -- --write",
"format:code": "npm run lint:code -- --fix",
"format:svg": "node scripts/format-svg.js",
"hooks:uninstall": "node node_modules/husky/husky.js uninstall",
"hooks:install": "node node_modules/husky/husky.js install",
"jest": "jest",
"jest:loki": "cross-env GATSBY_DB_NODES=loki jest",
"lerna": "lerna",
"lerna-prepare": "lerna run prepare",
"lint": "npm-run-all --continue-on-error -p lint:code lint:other",
"lint:code": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .js,.jsx .",
"lint:flow": "babel-node scripts/flow-check.js",
"lint:other": "npm run prettier -- --check",
"markdown": "md-magic --path \"starters/**/*.md\"",
"postmarkdown": "prettier --write \"starters/**/*.md\"",
"plop": "plop",
"prebootstrap": "yarn",
"prettier": "prettier \"**/*.{md,css,scss,yaml,yml,ts}\"",
"publish": "node scripts/check-publish-access && lerna publish",
"publish-canary": "lerna publish --canary --yes",
"publish-next": "lerna publish --npm-tag=next --bump=prerelease",
"test": "npm-run-all -s lint jest",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch",
"test:integration": "jest --config=integration-tests/jest.config.js",
"version": "prettier --write \"**/CHANGELOG.md\"",
"watch": "lerna run watch --no-sort --stream --concurrency 999"
},
"workspaces": [
"packages/*"
]
}