-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"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 build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@eslint/js": "^8.2.0",
"@mdx-js/react": "^3.1.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"classnames": "^2.5.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-bliss": "^6.0.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.3.0",
"lint-staged": "^16.2.6",
"prismjs": "^1.30.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-syntax-highlighter": "^16.1.0",
"reactstrap": "^9.2.3",
"sass": "^1.94.0",
"yarn": "^1.22.22"
},
"engines": {
"yarn": ">=1.10.1"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}