forked from ginetta/ginetta-gatsby-source-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.43 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
{
"name": "gatsby-starter-hello-world",
"description": "Gatsby hello world starter",
"license": "MIT",
"scripts": {
"d": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"test": "jest --coverage",
"watch:test": "jest --watch --coverage"
},
"dependencies": {
"cockpit-sdk": "^0.9.3",
"crypto": "^1.0.1",
"dotenv": "^5.0.0",
"gatsby": "^1.9.175",
"gatsby-link": "^1.6.35",
"gatsby-plugin-glamor": "^1.6.11",
"gatsby-plugin-react-next": "^1.0.8",
"gatsby-plugin-typography": "^1.7.13",
"gatsby-plugin-cockpit": "^1.0.33",
"gatsby-source-filesystem": "^1.5.16",
"glamorous": "^4.11.4",
"html-to-react": "^1.3.3",
"markdown": "^0.5.0",
"pluralize": "^7.0.0",
"react-markdown": "^3.1.4",
"react-render-html": "^0.6.0",
"react-styling": "^1.6.4",
"sanitize-html": "^1.17.0",
"typography": "^0.16.6",
"typography-theme-kirkham": "^0.16.3",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.16.0",
"eslint-config-fbjs": "^2.0.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-relay": "0.0.21",
"jest": "^22.2.2",
"jest-cli": "^22.2.2",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015",
"react"
],
"plugins": [
"syntax-class-properties",
"transform-class-properties"
]
}
}
},
"jest": {
"transform": {
".(js|jsx)": "babel-jest"
},
"testRegex": "(\\.(test|spec))\\.(jsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"modulePaths": [
"src"
],
"moduleNameMapper": {
"\\.(scss|svg|png|jpg)$": "<rootDir>/src/styleMock.js"
},
"moduleFileExtensions": [
"jsx",
"js"
],
"coverageReporters": [
"lcov",
"text",
"html"
],
"setupTestFrameworkScriptFile": "./src/setupTests.js"
}
}