-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@server-state/types",
"description": "Types for Server State and their projects",
"license": "MIT",
"version": "0.5.0",
"homepage": "https://www.server-state.tech/",
"types": "types/index.d.ts",
"files": [
"types"
],
"scripts": {
"prepare": "npm run meta:register-precommit",
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"test": "tsc -p sample",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-pattern node_modules/ --no-error-on-unmatched-pattern \".\"",
"style": "prettier --write package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"style:ci": "prettier --list-different package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"docs": "fliegdoc build --serve --port 4040",
"docs:ci": "fliegdoc build",
"clean": "rimraf types docs",
"meta:register-precommit": "node scripts/register-precommit-hook.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/server-state/types.git"
},
"bugs": {
"url": "https://github.com/server-state/types/issues"
},
"author": {
"name": "server-state",
"email": "info@server-state.tech",
"url": "https://www.server-state.tech/"
},
"contributors": [
{
"name": "Pablo Klaschka",
"email": "contact@pabloklaschka.de",
"url": "https://github.com/pklaschka"
},
{
"name": "Ludwig Richter",
"email": "richter@fliegwerk.com",
"url": "https://github.com/fussel178"
}
],
"peerDependencies": {
"@graphql-tools/utils": ">=8",
"rxjs": ">=7"
},
"devDependencies": {
"@types/node": "17.0.40",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.33.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "39.7.4",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-tsdoc": "0.2.17",
"fliegdoc": "0.6.0",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"tslib": "2.5.0",
"typescript": "4.9.5"
}
}