-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "nt-gatsby-starter",
"author": "Zak Zubair <[email protected]>",
"version": "0.0.1",
"main": "index.js",
"dependencies": {
"emotion": "^8.0.8",
"emotion-server": "^8.0.8",
"feather-icons": "^3.3.0",
"gatsby": "^1.9.76",
"gatsby-image": "^1.0.13",
"gatsby-link": "^1.6.21",
"gatsby-plugin-emotion": "^1.1.8",
"gatsby-plugin-google-analytics": "^1.0.10",
"gatsby-plugin-offline": "^1.0.12",
"gatsby-plugin-react-next": "^1.0.4",
"gatsby-plugin-sharp": "^1.6.9",
"gatsby-source-filesystem": "^1.5.5",
"gatsby-transformer-json": "^1.0.11",
"gatsby-transformer-remark": "^1.7.17",
"gatsby-transformer-sharp": "^1.6.10",
"gatsby-transformer-yaml": "^1.5.11",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"react-emotion": "^8.0.8",
"styled-system": "^1.0.8"
},
"scripts": {
"start": "node_modules/.bin/gatsby develop",
"build": "node_modules/.bin/gatsby build",
"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": true,
"coverageReporters": [
"lcov",
"text",
"html"
]
},
"devDependencies": {
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"prettier": "1.7.4"
}
}