forked from overwolf/overwolf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.47 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
{
"name": "overwolf-github-io",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "yarn tsc --project tsconfig.build.json",
"compile:dev": "yarn tsc --project tsconfig.build.json --watch",
"bootstrap": "yarn compile && node lib/bootstrap/bootstrap.js",
"bootstrap:dev": "node lib/bootstrap/bootstrap.js",
"update": "yarn && yarn workspace engine compile",
"start": "yarn bootstrap && yarn workspace engine start",
"deploy": "yarn bootstrap && yarn workspace engine deploy",
"build": "yarn bootstrap && yarn workspace engine build",
"serve": "yarn workspace engine serve",
"clear": "yarn bootstrap && node lib/bootstrap/clear.js && yarn workspace engine clear",
"write-translations": "yarn workspace engine write-translations",
"write-heading-ids": "yarn workspace engine write-heading-ids"
},
"workspaces": [
"engine"
],
"repository": {
"type": "git",
"url": "git+https://github.com/overwolf/overwolf.github.io.git"
},
"private": true,
"author": "Overwolf Ltd.",
"license": "ISC",
"bugs": {
"url": "https://github.com/overwolf/overwolf.github.io/issues"
},
"homepage": "https://github.com/overwolf/overwolf.github.io#readme",
"devDependencies": {
"typescript": "^4.9.4"
},
"type": "commonjs",
"resolutions": {
"@docusaurus/plugin-content-docs@2.2.0": "patch:@docusaurus/plugin-content-docs@npm%3A2.2.0#./engine/patches/@docusaurus-plugin-content-docs-npm-2.2.0-34ac512661.patch"
}
}