-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.7 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
{
"dependencies": {
"airbnb-browser-shims": "^2.1.0",
"babel-eslint": "^8.2.3",
"gatsby": "^1.9.158",
"gatsby-link": "^1.6.34",
"gatsby-plugin-react-helmet": "^2.0.3",
"gatsby-plugin-typography": "^1.7.13",
"npm": "^5.8.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-google-invisible-recaptcha": "^0.2.7",
"react-helmet": "^5.2.0",
"smoothscroll-polyfill": "^0.4.3",
"typography": "^0.16.6"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"gh-pages": "^1.1.0",
"global": "^4.3.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"prettier": "^1.10.2",
"react-test-renderer": "^16.3.2",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"gh-pages": "gatsby build --prefix-paths && gh-pages -d public",
"lint": "./node_modules/.bin/eslint src/**/*.js*; stylelint \"src/**/*.css\" --aei",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"roots": [
"test/"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}