-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.22 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
78
{
"name": "@grailbio/lib",
"version": "2.0.0",
"homepage": "https://github.com/grailbio/ui-lib",
"scripts": {
"build": "NODE_ENV=production yarn build:src",
"build:src": "tsdx build",
"build:client": "yarn build",
"start:client": "NODE_ENV=development tsdx watch",
"cover": "open coverage/lcov-report/index.html",
"check-types": "tsc",
"lint": "yarn check-types && tsdx lint src",
"lint-fix": "yarn lint --fix",
"format": "prettier --write \"*.js\" && yarn lint-fix",
"preinstall": "node -e 'if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error(\"Use yarn install\")'",
"prepublishOnly": "yarn lint && yarn test-all && yarn build",
"precommit": "lint-staged",
"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": {
"@types/history": "^4.7.5",
"@types/lodash": "^4.14.149",
"csv-string": "^3.2.0",
"date-fns": "^2.11.0",
"fuzzy": "^0.1.3",
"googleapis": "^48.0.0",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.15",
"lodash-es": "^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",
"uuid": "^7.0.2"
},
"devDependencies": {
"@grailbio/eslint-config-grail": "1.0.3",
"@types/jest": "25.1.4",
"@types/react": "16.9.25",
"eslint-plugin-tsc": "1.2.0",
"fs-extra": "9.0.0",
"husky": "4.2.3",
"jest-mock-console": "1.0.0",
"lint-staged": "7.3.0",
"mock-socket": "9.0.3",
"prettier": "2.0.2",
"tsdx": "0.13.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/lib.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"publishConfig": {
"access": "public"
},
"sideEffects": false
}