-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.66 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.66 KB
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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bgee",
"version": "15.2.5",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build && sh scripts/fix_symlinks.sh",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"cluster": "pm2 start 'npx react-router-serve ./build/server/index.js' --name bgee-web -i 62",
"stop": "pm2 stop bgee-web",
"stop:all": "pm2 stop all",
"restart": "pm2 restart bgee-web",
"restart:all": "pm2 restart all",
"logs": "pm2 logs bgee-web",
"status": "pm2 status",
"typecheck": "react-router typegen && tsc",
"fmt": "prettier --write . && eslint . --fix",
"lint": "prettier --check . && eslint .",
"test": "npx playwright test",
"stresstest": "artillery run stresstest.yml",
"all": "npm run fmt && npm run typecheck && npm test",
"postinstall": "npx playwright install --with-deps",
"prepare": "husky",
"upgrade": "npx npm-check-updates -u -x bulma && npm i",
"archive": "node scripts/archiveCreation.js"
},
"dependencies": {
"@react-router/fs-routes": "^7.13.1",
"@react-router/node": "^7.13.1",
"@react-router/serve": "^7.13.1",
"@sib-swiss/sparql-editor": "^0.2.15",
"axios": "^1.13.6",
"bulma": "^0.9.4",
"d3": "^7.9.0",
"isbot": "^5.1.35",
"lucide-react": "^0.576.0",
"pm2": "^6.0.14",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1",
"react-select": "^5.10.2",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"remark-rehype": "^11.1.2",
"remark-toc": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@mdx-js/rollup": "^3.1.1",
"@playwright/test": "^1.58.2",
"@react-router/dev": "^7.13.1",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"artillery": "^2.0.30",
"eslint": "^10.0.2",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"react-router-devtools": "^6.2.0",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,mdx,html,yml}": [
"prettier --write",
"eslint --fix"
]
}
}