-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
{
"name": "astek-community-website",
"description": "",
"version": "1.0.0",
"author": "Loïc Lefloch <[email protected]>",
"dependencies": {
"classnames": "2.2.5",
"gatsby": "1.9.149",
"gatsby-image": "1.0.33",
"gatsby-link": "^1.6.32",
"gatsby-plugin-canonical-urls": "1.0.11",
"gatsby-plugin-catch-links": "1.0.14",
"gatsby-plugin-feed": "1.3.15",
"gatsby-plugin-google-analytics": "1.0.15",
"gatsby-plugin-manifest": "1.0.12",
"gatsby-plugin-netlify": "1.0.13",
"gatsby-plugin-nprogress": "1.0.9",
"gatsby-plugin-offline": "1.0.12",
"gatsby-plugin-react-helmet": "2.0.3",
"gatsby-plugin-react-next": "1.0.7",
"gatsby-plugin-sass": "1.0.15",
"gatsby-plugin-sharp": "1.6.24",
"gatsby-plugin-sitemap": "1.2.9",
"gatsby-remark-code-repls": "1.0.8",
"gatsby-remark-copy-linked-files": "1.5.25",
"gatsby-remark-embed-snippet": "1.0.5",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "1.5.36",
"gatsby-remark-prismjs": "1.2.11",
"gatsby-remark-responsive-iframe": "1.4.16",
"gatsby-source-filesystem": "1.5.11",
"gatsby-transformer-remark": "1.7.26",
"gatsby-transformer-sharp": "1.6.16",
"lodash": "4.17.4",
"material-ui": "1.0.0-beta.26",
"material-ui-icons": "1.0.0-beta.17",
"moment": "2.20.1",
"normalize.css": "7.0.0",
"prop-types": "^15.6.0",
"react-helmet": "5.2.0",
"smooth-scroll": "12.1.5",
"typeface-roboto": "0.0.45"
},
"keywords": [],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "node_modules/.bin/gatsby build",
"clean": "rm -rf public/render-page.js.map public/static .cache coverage",
"dev": "node_modules/.bin/gatsby develop --host localhost --port 8044",
"serve": "node_modules/.bin/gatsby serve",
"test": "jest",
"test:watch": "jest --watch",
"prettify": "prettier --write '{./,__{tests,mocks}__}/**/*.+(js|jsx)'"
},
"jest": {
"transform": {
".(js|jsx)": "babel-jest"
},
"testRegex": "(\\.(test|spec))\\.(jsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"moduleFileExtensions": [
"jsx",
"js"
],
"collectCoverage": false,
"coverageReporters": [
"lcov",
"text",
"html"
]
},
"devDependencies": {
"eslint": "4.14.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.4.0",
"eslint-plugin-react": "7.5.1",
"jest": "22.0.4",
"prettier": "^1.9.2"
}
}