-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.04 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.04 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "neurosynth",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.6.0",
"@citation-js/core": "^0.7.18",
"@citation-js/plugin-bibjson": "^0.7.14",
"@citation-js/plugin-bibtex": "^0.7.14",
"@citation-js/plugin-doi": "^0.7.14",
"@citation-js/plugin-enw": "^0.3.0",
"@citation-js/plugin-ris": "^0.7.14",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@handsontable/react": "^12.3.3",
"@hello-pangea/dnd": "^16.0.1",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.7.0",
"@mui/styles": "^5.5.1",
"@mui/system": "^5.5.1",
"@mui/x-data-grid": "^5.10.0",
"@niivue/niivue": "^0.46.0",
"@reactour/tour": "^2.10.3",
"@sentry/react": "^7.119.2",
"@tanstack/react-table": "^8.20.5",
"@tanstack/react-virtual": "^3.13.8",
"axios": "^1.12.2",
"fast-xml-parser": "^4.4.1",
"handsontable": "^12.3.3",
"html-to-image": "^1.11.11",
"jose": "^4.15.5",
"notistack": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.2",
"react-router-dom": "^6.22.3",
"react-window": "^2.2.3",
"reactflow": "^11.5.3",
"uuid": "^9.0.0",
"vite": "^6.3.7",
"web-vitals": "^1.1.2",
"zustand": "^4.3.3"
},
"scripts": {
"start:dev": "vite --mode dev",
"build:dev": "vite build --mode dev",
"start:staging": "vite --mode staging",
"build:staging": "vite build --mode staging",
"build:prod": "vite build --mode production",
"test": "vitest run --mode dev",
"test-with-coverage": "npm run test -- --coverage --watchAll=false",
"cy:e2e-headless": "cypress run",
"cy:e2e-headless-dev": "env-cmd -f .env.dev cypress run",
"cy:e2e-headless-staging": "env-cmd -f .env.staging cypress run",
"cy:e2e-browser-staging": "env-cmd -f .env.staging cypress open -b chrome --e2e",
"cy:e2e-browser-dev": "env-cmd -f .env.dev cypress open -b chrome --e2e",
"cy:e2e-headless-staging-single": "env-cmd -f .env.staging cypress run --spec",
"cy:install": "cypress install",
"serve-build": "vite preview --mode staging --port 3000",
"lint": "eslint ."
},
"type": "module",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@sentry/vite-plugin": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^12.8.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.19.63",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^2.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.2.0",
"env-cmd": "^10.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react-error-overlay": "^6.0.9",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.13.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "4.52.5"
}
}