This repository has been archived by the owner on May 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "@web-standards-ru/new",
"private": true,
"version": "1.0.0",
"description": "Сайт «Веб-стандартов»",
"scripts": {
"build": "gatsby build && npm run copy:assets",
"copy:assets": "cp ./assets/* ./public/",
"develop": "gatsby develop",
"lint": "npm run lint:eslint && npm run prettier",
"lint:eslint": "eslint --ext .js,jsx .",
"lint:fix": "npm run lint:eslint -- --fix",
"prettier": "prettier \"**/*.{js,jsx}\" --list-different",
"prettier:fix": "npm run prettier -- --write",
"test:deploy": "npm run build && node prod-testing.js",
"test": "npm run lint && npm run build",
"start": "npm run develop"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-standards-ru/new.git"
},
"author": "[email protected]",
"license": "CC BY-SA 4.0",
"bugs": {
"url": "https://github.com/web-standards-ru/new/issues"
},
"homepage": "https://github.com/web-standards-ru/new#readme",
"dependencies": {
"gatsby": "^2.0.1",
"gatsby-link": "^2.0.1",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.17",
"gatsby-remark-static-images": "^1.1.0",
"gatsby-source-atom": "^0.2.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-source-ical": "^1.0.1",
"gatsby-transformer-remark": "^2.1.3",
"node-static": "^0.7.11",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"prettier": "^1.15.3",
"prop-types": "^15.6.2"
}
}