-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.54 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
{
"name": "web-santacc",
"description": "Web Santa Compañía Creativa",
"version": "1.0.0",
"author": "Miguel Calderón <[email protected]>",
"dependencies": {
"bluebird": "^3.5.1",
"caniuse-db": "^1.0.30000764",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"gatsby": "^1.9.141",
"gatsby-image": "^1.0.30",
"gatsby-link": "^1.6.32",
"gatsby-module-loader": "^1.0.9",
"gatsby-plugin-catch-links": "^1.0.14",
"gatsby-plugin-google-analytics": "^1.0.15",
"gatsby-plugin-manifest": "^1.0.11",
"gatsby-plugin-nprogress": "^1.0.9",
"gatsby-plugin-offline": "^1.0.12",
"gatsby-plugin-preact": "^1.0.14",
"gatsby-plugin-react-helmet": "^2.0.3",
"gatsby-plugin-sass": "^1.0.15",
"gatsby-plugin-sharp": "^1.6.24",
"gatsby-plugin-sitemap": "^1.2.5",
"gatsby-plugin-styled-components": "^2.0.4",
"gatsby-source-filesystem": "^1.5.11",
"gatsby-source-wordpress": "^2.0.42",
"gatsby-transformer-documentationjs": "^1.4.8",
"gatsby-transformer-sharp": "^1.6.16",
"graphql-code-generator": "^0.8.14",
"lodash": "^4.17.4",
"prismjs": "^1.8.4",
"prop-types": "^15.6.0",
"react-addons-css-transition-group": "^15.6.2",
"react-document-title": "^2.0.3",
"react-google-maps": "^9.2.2",
"react-helmet": "^5.2.0",
"slash": "^1.0.0",
"styled-components": "^2.2.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "jest",
"test:watch": "jest --watch",
"test:cypress": "cypress open",
"test:coverage": "jest --coverage",
"test:coveragetravis": "env SKIP=e2e jest --coverage -u",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:snapshotclean": "jest -u",
"test:skipsnapshots": "env MODE=skipsnapshots jest",
"test:skipsnapshotsande2e": "env MODE=skipsnapshots SKIP=e2e jest",
"test:skipe2e": "env SKIP=e2e jest",
"graphql": "gql-gen --url http://localhost:8000/___graphql --template typescript --out ./graphql-types.d.ts",
"doc": "node doc"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"coveralls": "^3.0.0",
"cypress": "^1.4.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.2.2",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"jest-image-snapshot": "^2.2.0",
"jest-styled-components": "^4.9.0",
"prettier": "^1.8.2",
"puppeteer": "^0.13.0",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "^15.6.2"
},
"jest": {
"setupFiles": [
"./test/jestsetup.js"
],
"setupTestFrameworkScriptFile": "./test/jestsetuptestframework.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy",
"^.+\\.(jpg|png)$": "identity-obj-proxy"
},
"collectCoverageFrom": [
"**/src/**/*.{js,jsx}"
],
"moduleFileExtensions": [
"js",
"jsx"
]
}
}