-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.93 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
{
"bugs": {
"url": "https://github.com/cytoai/image-viewer/issues"
},
"dependencies": {
"@cytoai/hooks": "^0.1.1",
"@cytoai/types": "^0.1.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"react": "^16.8.6",
"react-color": "^2.17.3",
"react-dnd": "^7.4.5",
"react-dom": "^16.8.6",
"react-i18next": "^10.9.0"
},
"description": "Cyto’s image viewer React component",
"devDependencies": {
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@types/react": "^16.8.17",
"@types/react-color": "^3.0.0",
"@types/react-dom": "^16.8.4",
"@types/storybook__react": "^4.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"lint-staged": "^8.1.6",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist"
],
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./src/setupTests.ts"
],
"testEnvironment": "node"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --single-quote --write",
"git add"
]
},
"main": "./dist/index.js",
"name": "@cytoai/image-viewer",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cytoai/image-viewer.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p ./tsconfig.json",
"precommit": "lint-staged",
"test": "jest",
"storybook": "start-storybook -p 9009"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"version": "0.1.0"
}