-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.08 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
{
"version": "2.84.0",
"name": "@sjcrh/proteinpaint",
"description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
"main": "server/main.js",
"bin": "server/start.js",
"private": true,
"//IMPORTANT": "list order of workspaces entries should match dependency graph direction",
"workspaces": [
"augen",
"shared/*",
"rust",
"server",
"client",
"front",
"container/server",
"container/full"
],
"scripts": {
"reset": "rm -rf ./node_modules && rm -rf ./**/node_modules && rm -rf ./**/**/node_modules && npm install",
"bundle": "cd client; npm run dev",
"dev": "cd client; ./dev.sh; ",
"build": "npm run build --workspace=server",
"start": "tsx watch ./server/start.js",
"dev1": "trap 'kill %1' INT; npm run bundle & npm start",
"server": "trap 'kill %1' INT; npm run dev -w @sjcrh/proteinpaint-server & npm start",
"client": "npm run dev -w @sjcrh/proteinpaint-client",
"test:integration": "npm run test:integration --workspace=client",
"posttest:integration": "./build/integration/exitZeroOnPKillNode.sh",
"local:integration": "cd client; npm run test:integration",
"lint": "eslint . --ext .ts",
"docker": "./build/dev/run.sh",
"testws": "npm test --workspaces",
"sethooks": "./utils/hooks/init.sh",
"getconf": "node -p 'JSON.stringify(require(\"./server/src/serverconfig.js\"),null,\" \")'",
"clean": "git add -A; git stash --staged",
"doc": "npm run doc --workspace=server"
},
"author": "",
"license": "SEE LICENSE IN ./LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/stjude/proteinpaint"
},
"bugs": {
"url": "https://github.com/stjude/proteinpaint"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/estree": "^1.0.1",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.2.4",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"typescript": "^5.6.3"
},
"dependencies": {
"glob": "^10.4.5"
}
}