-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.78 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
79
80
81
82
83
84
85
86
87
{
"name": "pixelium",
"version": "0.0.0",
"description": "React component to display and process raster image.",
"main": "lib-cjs/components/Pixelium.js",
"module": "lib/components/Pixelium.js",
"types": "lib/components/Pixelium.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build --outDir build",
"eslint": "eslint . --cache",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check src",
"prettier:write": "prettier --write src",
"check-types": "tsc --project tsconfig.esm.json",
"compile": "npm run compile:esm && npm run compile:cjs",
"compile:esm": "tsc --project tsconfig.esm.json",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"clean-lib": "rimraf lib lib-cjs",
"test": "npm run eslint && npm run prettier && npm run check-types",
"deploy": "npm run build && echo pixelium.zakodium.com > ./build/CNAME && gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/pixelium.git"
},
"author": "Xavier Stouder <[email protected]> (https://stouder.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/pixelium/issues"
},
"homepage": "https://github.com/zakodium-oss/pixelium#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@simbathesailor/use-what-changed": "^2.0.0",
"@swc/plugin-emotion": "^2.5.67",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.38.0",
"eslint-config-cheminfo-react": "^9.1.1",
"eslint-config-cheminfo-typescript": "^11.3.1",
"husky": "^8.0.3",
"ky": "^0.25.1",
"modern-normalize": "^2.0.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"typescript": "~5.1.0",
"vite": "^4.3.2"
},
"dependencies": {
"@blueprintjs/core": "^5.9.1",
"@blueprintjs/select": "^5.1.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@lukeed/uuid": "^2.0.1",
"cheminfo-font": "^1.9.0",
"fifo-logger": "^0.6.1",
"file-collection": "^0.2.0",
"filelist-utils": "^1.9.0",
"image-js": "0.0.0-next-d280f46ab7",
"immer": "^10.0.2",
"lodash": "^4.17.21",
"react-d3-utils": "^1.0.0",
"react-icons": "^4.10.1",
"react-kbs": "^2.1.1",
"react-map-interaction": "^2.1.0",
"react-plot": "^1.4.2",
"react-roi": "^1.4.2",
"react-science": "^3.1.0",
"react-use": "^17.4.0",
"tiff": "^6.1.0"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.6"
}
}