forked from neon-bindings/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.67 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
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
{
"name": "@neon/website",
"version": "0.2.0",
"repository": "https://github.com/neon-bindings/website.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn styles && docusaurus build",
"crowdin-upload": "crowdin --config ../crowdin.yaml upload sources --auto-update -b master",
"crowdin-download": "crowdin --config ../crowdin.yaml download -b master",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"lint": "eslint .",
"lint-prose": "cp .proselintrc ~/ && proselint docs blog",
"start": "yarn styles && docusaurus start",
"styles": "sass src/css/custom-bootstrap.scss src/css/bootstrap.css",
"swizzle": "docusaurus swizzle",
"test": "yarn lint && yarn lint-prose && yarn build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"bootstrap": "^4.5.2",
"prismjs": "^1.21.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-syntax-highlighter": "^12.2.1",
"reactstrap": "^8.5.1"
},
"devDependencies": {
"@docusaurus/core": "^2.0.0-alpha.64",
"@docusaurus/preset-classic": "^2.0.0-alpha.64",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-bliss": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-syntax-highlighter": "^13.5.1",
"sass": "^1.26.10",
"yarn": "^1.22.4"
},
"engines": {
"yarn": ">=1.10.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"airbnb",
"bliss"
],
"rules": {
"class-methods-use-this": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"flowtype-errors/show-errors": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/iframe-has-title": "off",
"react/jsx-filename-extension": "off",
"no-unused-vars": "off",
"react/destructuring-assignment": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-no-target-blank": "off",
"react/no-multi-comp": "off",
"react/no-unescaped-entities": "off",
"react/jsx-props-no-spreading": "off",
"react/prefer-stateless-function": "off",
"react/prop-types": "off"
}
}
}