-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·79 lines (79 loc) · 2.53 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
{
"name": "react-fast-masonry",
"main": "build/index.js",
"types": "build/index.d.ts",
"description": "A fast masonry infinite-scrolling component using the intersection api",
"keywords": [
"mit-license",
"infinite-scroll",
"masonry",
"masonry-layout",
"react",
"react-js",
"intersection-observer",
"bricks.js"
],
"version": "0.7.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johnsonjo4531/react-fast-masonry"
},
"homepage": "https://johnsonjo4531.github.io/react-fast-masonry/",
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "start-storybook -p 9009 -s public/storybook",
"build": "react-scripts build --library && tsc -p .",
"build:storybook": "build-storybook -s public/storybook",
"build:docs": "yarn build && yarn api-report && yarn api-docs",
"clean": "rm -rf node_modules && npm i",
"test": "react-scripts test --env=jsdom",
"coverage": "npm run test -- --coverage",
"deploy": "gh-pages -d storybook-static",
"predeploy": "npm run build && npm run build:storybook && npm run build:docs",
"eject": "react-scripts eject",
"commit": "git-cz",
"api-report": "api-extractor run",
"api-docs": "api-documenter markdown -i temp -o ./public/docs"
},
"dependencies": {
"@researchgate/react-intersection-list": "^3.0.2",
"@types/bricks.js": "^1.8.2",
"bricks.js": "^1.8.0",
"react": "^17.0.2"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.15.3",
"@microsoft/api-extractor": "^7.19.4",
"@storybook/addon-options": "^5.3.21",
"@storybook/builder-webpack5": "^6.4.17",
"@storybook/manager-webpack5": "^6.4.17",
"@storybook/preset-create-react-app": "^4.0.0",
"@storybook/react": "^6.4.17",
"@types/storybook-readme": "^5.0.5",
"commitizen": "^4.2.4",
"cz-emoji": "^1.1.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"jest-styled-components": "^7.0.8",
"mini-css-extract-plugin": "^2.5.3",
"react-app-rewired": "^2.1.1",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"react-test-renderer": "^17.0.2",
"source-map-explorer": "^2.5.2",
"storybook-readme": "^5.0.9",
"typescript": "^4.5.5",
"webpack": "^5.68.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}