-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.44 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.44 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "webpurple",
"description": "Site of front-end community - WebPurple",
"version": "2.0.0",
"dependencies": {
"@gatsbyjs/reach-router": "^1.3.6",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.13.3",
"bulma": "^0.7.1",
"can-use-dom": "^0.1.0",
"date-fns": "^1.29.0",
"disqus-react": "^1.0.5",
"downshift": "^3.0.0",
"eslint-plugin-flowtype": "^6.1.1",
"gatsby": "^3.14.3",
"gatsby-image": "^2.0.20",
"gatsby-link": "^3.14.0",
"gatsby-plugin-algolia": "^0.22.2",
"gatsby-plugin-eslint": "^4.0.0",
"gatsby-plugin-flow": "^2.14.0",
"gatsby-plugin-google-analytics": "^3.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-netlify-cms": "^5.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.1",
"gatsby-plugin-sitemap": "^4.10.0",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-plugin-webpack-size": "^2.0.1",
"gatsby-react-router-scroll": "^4.14.0",
"gatsby-remark-images": "^5.11.0",
"gatsby-remark-prismjs": "^5.11.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-remark": "^4.11.0",
"gatsby-transformer-sharp": "^3.14.0",
"gatsby-transformer-yaml": "^3.14.0",
"lodash.debounce": "^4.0.8",
"netlify-cms": "^2.9.2",
"prismjs": "^1.15.0",
"ramda": "^0.26.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-facebook": "^6.0.4",
"react-helmet": "^5.2.0",
"react-images": "^0.5.19",
"react-instantsearch-dom": "^5.4.0",
"react-masonry-component": "^6.2.1",
"react-modal": "^3.4.5",
"react-popper": "^1.0.0",
"react-portal": "^4.1.4",
"react-responsive": "^4.1.0",
"react-spring": "^5.6.11",
"react-yandex-metrika": "^2.3.0",
"recompose": "^0.30.0",
"reflexbox": "^4.0.6",
"styled-components": "^5.3.3",
"styled-system": "^3.0.2",
"translit": "^0.1.0",
"translit-russian": "0.0.2",
"transliteration": "^1.6.5",
"vk-io": "4.3.2"
},
"keywords": [
"gatsby",
"netlify",
"react",
"frontend"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"start": "npm run develop",
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"flow": "flow",
"flow-typed": "flow-typed install",
"format": "prettier --write \"{gatsby-*.js?,src/**/*.js,src/**/*.jsx}\"",
"prettier-ci": "prettier --list-different \"{gatsby-*.js,src/**/*.jsx}\"",
"test": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"browserslist": [
"> 1%",
"IE >= 11",
"last 2 versions"
],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"jsxBracketSameLine": true
},
"jest": {
"setupFilesAfterEnv": ["./setupTests.js"],
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/jestPreprocess.js"
}
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"babel-jest": "^27.3.1",
"dotenv": "^6.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.4.0",
"flow-bin": "^0.162.1",
"flow-typed": "^3.3.1",
"jest": "^27.3.1",
"jest-enzyme": "^7.1.2",
"pre-commit": "^1.2.2",
"prettier": "^1.13.5"
},
"pre-commit": [
"format"
]
}