-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "@matt.miao/lazy-img",
"version": "1.0.5",
"description": "React img component",
"main": "build/cjs/index.js",
"module": "build/es/index.mjs",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"p-patch": "npm run build && npm version patch && npm publish --access=public",
"chromatic": "chromatic --exit-zero-on-changes --exit-once-uploaded main"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"keywords": [
"react",
"img",
"image",
"component"
],
"author": "matt.miao",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.9",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"chromatic": "^5.9.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.4",
"node-sass": "^6.0.0",
"postcss": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.50.6",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^10.2.0",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
},
"homepage": "https://github.com/miaolq/lazy-img",
"repository": "https://github.com/miaolq/lazy-img",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@storybook/addon-storysource": "^6.5.16"
}
}