-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "spb-frontend-ru",
"description": "SPB Frontend official site",
"version": "1.0.0",
"dependencies": {
"@jacobmischka/gatsby-plugin-react-svg": "^1.0.0",
"gatsby": "^1.0.1",
"gatsby-link": "^1.0.1",
"gatsby-plugin-manifest": "^1.0.1",
"gatsby-plugin-react-helmet": "^1.0.1",
"gatsby-source-filesystem": "^1.0.1",
"gatsby-transformer-json": "^1.0.1",
"gatsby-transformer-remark": "^1.1.0",
"react-disqussion": "^1.1.0",
"rss": "^1.2.2",
"slug": "^0.9.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-plugin-compat": "^1.0.4",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^0.12.0",
"jest": "^20.0.4",
"lint-staged": "^4.0.2",
"remark-cli": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^2.0.0",
"remark-preset-lint-recommended": "^3.0.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"pages/*.js\" \"utils/*.js\" \"wrappers/*.js\" \"html.js\"",
"test": "jest",
"lint": "eslint ./src & stylelint \"./src/{components,css}/*.css\" & remark .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{css,pcss}": [
"stylelint"
],
"*.{md,markdown}": [
"remark"
]
}
}