-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "@frontendu/site",
"description": "Site of Frontend Youth",
"version": "1.0.0",
"author": "Aleksandr Shoronov <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.5.1",
"fontfaceobserver": "^2.0.13",
"gatsby": "^2.4.4",
"gatsby-link": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-styled-components": "^3.0.4",
"gatsby-plugin-yandex-metrika": "^1.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-twitter-widgets": "^1.7.1",
"styled-components": "^3.2.6"
},
"repository": {
"type": "git",
"url": "[email protected]:frontendu/frontendu.github.io.git"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"start": "npm i && npm run develop",
"develop": "gatsby develop --host 0.0.0.0",
"lint": "npm run lint:js && npm run lint:styles",
"lint:js": "eslint src/",
"lint:styles": "stylelint './src/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"husky": "^2.3.0",
"stylelint": "^10.0.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
}
}