-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
73
74
75
76
77
{
"name": "@grailbio/server-lib",
"version": "1.0.2",
"homepage": "https://github.com/grailbio/ui-server-lib",
"scripts": {
"build": "NODE_ENV=production yarn build:src",
"build:src": "tsdx build",
"build:client": "NODE_ENV=production yarn build:src",
"start:client": "NODE_ENV=development yarn build:src --watch",
"cover": "open coverage/lcov-report/index.html",
"check-types": "yarn tsc --skipLibCheck",
"lint": "yarn check-types && tsdx lint src",
"lint-fix": "yarn lint --fix",
"format": "yarn lint-fix",
"preinstall": "node -e 'if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error(\"Use yarn install\")'",
"precommit": "lint-staged",
"prepublishOnly": "yarn lint && yarn test-all && yarn build",
"test": "tsdx test --watch",
"test:staged": "tsdx test --coverage && echo --findRelatedTests does not work properly with coverage",
"test-all": "tsdx test --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"googleapis": "^48.0.0",
"http-proxy-middleware": "^1.0.3",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"node-fetch": "^2.6.0",
"passport": "^0.4.1",
"passport-strategy": "^1.0.0",
"qs": "^6.9.2"
},
"devDependencies": {
"@grailbio/eslint-config-grail": "1.0.3",
"@types/express": "4.17.3",
"@types/minimist": "1.2.0",
"@types/jest": "24.9.0",
"@types/passport": "1.0.3",
"@types/passport-strategy": "0.2.35",
"eslint-plugin-tsc": "1.2.0",
"husky": "4.2.3",
"jest": "24.9.0",
"jest-mock-console": "1.0.0",
"lint-staged": "7.3.0",
"prettier": "2.0.2",
"tsdx": "0.13.0"
},
"peerDependencies": {
"@grailbio/lib": "^1.1.11 || ^2.0.0"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]' --fix",
"git add"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|md|graphql|mdx)": [
"prettier --write",
"git add"
]
},
"main": "dist/index.js",
"module": "dist/server-lib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"publishConfig": {
"access": "public"
},
"sideEffects": false
}