forked from Jigsaw-Code/outline-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "outline-apps",
"productName": "Outline",
"scripts": {
"action:help": "npm run action list",
"action:list": "npm run action list",
"action": "node ./src/build/run_action.mjs",
"clean": "npm run clean --workspaces && rm -rf output node_modules third_party/jsign/*.jar && go run github.com/go-task/task/v3/cmd/task clean",
"format:all": "prettier --write \"**/*.{cjs,mjs,html,js,json,md,ts}\"",
"format": "pretty-quick --staged --pattern \"**/*.{cjs,mjs,html,js,json,md,ts}\"",
"lint:ts": "eslint --ext ts,mjs client",
"lint": "npm run lint:ts",
"reset": "npm run clean && npm ci"
},
"engines": {
"node": "18.x.x"
},
"private": true,
"workspaces": [
"infrastructure",
"server_manager",
"client"
],
"devDependencies": {
"@types/node-fetch": "^2.6.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"electron-builder": "^24.13.3",
"eslint-plugin-import": "^2.29.1",
"node-fetch": "^2.6.7"
}
}