-
Notifications
You must be signed in to change notification settings - Fork 787
/
package.json
42 lines (42 loc) · 1 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": "outline-server",
"private": true,
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.0",
"@types/jasmine": "^3.5.10",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@webpack-cli/serve": "^2.0.5",
"browserslist": "^4.20.3",
"eslint": "^8.10.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"generate-license-file": "^1.2.0",
"husky": "^1.3.1",
"jasmine": "^3.5.0",
"minimist": "^1.2.8",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"typescript": "^4.9.5",
"webpack-cli": "^5.1.4"
},
"scripts": {
"postinstall": "go build github.com/go-task/task/v3/cmd/task"
},
"engines": {
"node": "18.x.x"
},
"workspaces": [
"src/*"
],
"husky": {
"hooks": {
"pre-commit": "./task lint format"
}
}
}