-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.13 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
{
"name": "caniusevia",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"start": "docusaurus start",
"build": "node scripts/generate-dynamic-content.js && docusaurus build && via-keyboards build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"build-azure": "npm uninstall via-keyboards && npm i --save-dev https://github.com/the-via/keyboards.git && npm run build"
},
"dependencies": {
"@docusaurus/core": "^2.3.1",
"@docusaurus/preset-classic": "^2.3.1",
"@the-via/reader": "^1.6.0",
"classnames": "^2.3.2",
"js-file-download": "^0.4.12",
"json-stringify-pretty-compact": "^4.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"via-keyboards": "https://github.com/the-via/keyboards.git#refs/heads/master"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"handlebars": "^4.7.7",
"node-fetch": "^2.6.9"
}
}