forked from CivicActions/civicactions.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.59 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"axios": "^0.18.0",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"gatsby": "latest",
"gatsby-image": "^2.0.0-beta.8",
"gatsby-plugin-node-fields": "^1.0.0",
"gatsby-plugin-react-helmet": "latest",
"gatsby-plugin-sass": "^2.0.0-alpha.9",
"gatsby-plugin-sharp": "^2.0.0-beta.7",
"gatsby-remark-copy-linked-files": "^2.0.0-beta.3",
"gatsby-remark-images": "^2.0.1-beta.11",
"gatsby-source-filesystem": "^2.0.1-beta.10",
"gatsby-source-medium": "^2.0.0-beta.5",
"gatsby-transformer-remark": "^2.1.1-beta.7",
"gatsby-transformer-sharp": "^2.2.0-alpha.80a21f04",
"gh-pages": "^1.2.0",
"lodash": "^4.17.10",
"node-sass": "^4.9.3",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-sizeme": "^2.5.2",
"react-slick": "^0.23.1",
"react-stack-grid": "^0.7.1",
"sass-rem": "^2.0.1",
"typeface-lato": "0.0.54",
"typeface-ubuntu": "0.0.54",
"uswds": "^1.6.6"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "jest",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"sass-lint": "sass-lint -c .sass-lint.yml 'src/sass/**/*.scss' -v -q"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-preprocess.js"
},
"testRegex": "/.*(__tests__\\/.(?!(snap)$)([^.]+$))|(.*(test|spec))\\.jsx?$",
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
]
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"prettier": "^1.12.0",
"react-test-renderer": "^16.4.2",
"sass-lint": "^1.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}