This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.1 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
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
114
115
116
117
118
119
120
{
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"bugs": {
"url": "https://github.com/piximi/gallery-dialog/issues"
},
"dependencies": {
"@emotion/styled": "^10.0.23",
"@material-ui/core": "4.5.1",
"@material-ui/icons": "4.5.1",
"@material-ui/styles": "4.5.0",
"@material-ui/system": "^4.5.2",
"@piximi/components": "^0.1.18",
"@piximi/hooks": "^0.1.11",
"@piximi/image-dialog": "^1.0.3",
"@piximi/store": "^0.1.23",
"image-js": "^0.21.8",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-lazyload": "^2.6.5",
"react-redux": "^7.1.3",
"react-three-fiber": "^3.0.11",
"react-virtualized": "^9.21.2",
"react-vis": "^1.11.7",
"three": "^0.110.0"
},
"description": "Piximi’s ImageDialog component",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@piximi/types": "^0.1.8",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@storybook/storybook-deployer": "^2.8.1",
"@types/classnames": "^2.2.8",
"@types/color": "^3.0.0",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/file-saver": "^2.0.1",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.134",
"@types/node": "^12.0.0",
"@types/react": "^16.8.17",
"@types/react-color": "^3.0.0",
"@types/react-dom": "^16.8.4",
"@types/react-lazyload": "^2.6.0",
"@types/react-redux": "^7.1.0",
"@types/react-virtualized": "^9.21.5",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.16",
"@types/uuid": "^3.4.4",
"@types/victory": "^33.0.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"lint-staged": "^8.2.1",
"react-vis-types": "^0.0.3",
"ts-jest": "^24.0.2",
"typescript": "^3.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./src/setupTests.ts"
],
"testEnvironment": "node",
"transformIgnorePatterns": [
"/node_modules/react-dnd"
]
},
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --single-quote --write",
"git add"
]
},
"main": "./dist/index.js",
"name": "@piximi/gallery-dialog",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/piximi/gallery-dialog.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.3"
}