forked from CivicActions/civicactions.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.44 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
{
"name": "gatsby-starter-default",
"description": "Gatsby default starter",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"axios": "^0.21",
"gatsby": "^2",
"gatsby-image": "^2",
"gatsby-paginate": "^1",
"gatsby-plugin-client-side-redirect": "^1.1.0",
"gatsby-plugin-google-analytics": "^2.1.9",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-node-fields": "^2",
"gatsby-plugin-react-helmet": "^3",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2",
"gatsby-plugin-sharp": "^2",
"gatsby-plugin-sitemap": "^2.2.29",
"gatsby-redirect-from": "^0.2.1",
"gatsby-remark-autolink-headers": "^2.2.1",
"gatsby-remark-copy-linked-files": "^2",
"gatsby-remark-images": "^3",
"gatsby-source-filesystem": "^2",
"gatsby-transformer-remark": "^2",
"gatsby-transformer-sharp": "^2",
"gh-pages": "^2",
"js-yaml": "^3.14.1",
"lodash": "^4.17",
"node-sass": "^4.9.3",
"postcss-scss": "^2.0.0",
"prettier-eslint-cli": "^5.0.0",
"prettier-stylelint": "^0.4.2",
"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.25",
"react-stack-grid": "^0.7.1",
"react-youtube": "^7.9.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"sass-rem": "^2.0.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-order": "^3.0.1",
"typeface-lato": "0.0.75",
"typeface-ubuntu": "0.0.65",
"uswds": "^1.6.6",
"webpack": "^4",
"webpack-dev-server": "^3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop --host=0.0.0.0",
"clean": "gatsby clean",
"fix-code": "prettier-eslint --write 'src/**/*.{js,jsx}' '*.js' ",
"fix-styles": "prettier-stylelint --quiet --write 'src/**/*.{css,scss}' ",
"lint-code": "prettier --check 'src/**/*.{js,jsx}' '*.js' ",
"eslint-code": "eslint 'src/**/*.{js,jsx}' '*.js' ",
"lint-styles": "prettier-stylelint --quiet 'src/**/*.{css,scss}' ",
"test": "jest",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"lint-sass": "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": "^24",
"identity-obj-proxy": "^3.0.0",
"jest": "^24",
"prettier": "^1.18",
"react-test-renderer": "^16.4.2",
"sass-lint": "^1.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}