generated from allen-cell-animated/github-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.69 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
{
"name": "timelapse-colorizer",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"start": "vite",
"start-internal": "vite --config config/vite.internal-build.config.js",
"dev": "vite",
"dev-internal": "vite --config config/vite.internal-build.config.js",
"test": "vitest",
"checks": "npm run lint & npm run typeCheck & npx vitest run",
"build": "vite build",
"build-internal": "vite build --base=/nucmorph-colorizer/ --config config/vite.internal-build.config.js",
"build-colorizer-data-docs": "vite build --base=/viewer/",
"preview": "vite preview",
"deploy": "vite build --base=/timelapse-colorizer/ && gh-pages -d dist -a -m \"New gh-pages build; deployed via `deploy` script in `package.json`.\"",
"lint": "eslint --config ./.eslintrc --ext .ts --ext .tsx --ext .js --ext .jsx .",
"lint-fix": "eslint --fix --config ./.eslintrc --ext .ts --ext .tsx --ext .js --ext .jsx .",
"typeCheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chroma-js": "2.4.4",
"@types/d3": "^7.4.3",
"@types/dom-webcodecs": "^0.1.8",
"@types/plotly.js-dist-min": "^2.3.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.28",
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.3",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^5.0.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.7",
"semver": "^7.6.0",
"typescript": "^4.9.5",
"vite": "^4.2.0",
"vite-plugin-glsl": "^1.1.2",
"vite-plugin-svgr": "^4.0.0",
"vitest": "^0.34.3",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
"@ant-design/icons": "^5.2.5",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/papaparse": "^5.3.15",
"antd": "^5.9.4",
"chroma-js": "^3.1.1",
"d3": "^7.9.0",
"fuse.js": "^7.0.0",
"hyparquet": "^1.0.0",
"hyparquet-compressors": "^0.1.4",
"mp4-muxer": "^2.2.2",
"papaparse": "^5.4.1",
"plotly.js-dist-min": "^2.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.2",
"react-select": "^5.8.0",
"styled-components": "^6.0.8",
"three": "^0.151.3",
"usehooks-ts": "^2.9.1",
"workerpool": "^9.1.3"
}
}