-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.55 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": "skeleton-kit",
"version": "1.0.1",
"description": "Low maintenance, pixel perfect skeleton screens",
"homepage": "https://github.com/kumar303/skeleton-kit",
"keywords": ["react", "ui"],
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"files": [
"build/"
],
"license": "MPL-2.0",
"scripts": {
"build": "rimraf build && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint --ext .js,.ts,.jsx,.tsx .",
"prepublishOnly": "yarn build",
"prettier-check": "prettier --check .",
"storybook": "start-storybook -p 6006",
"test": "jest",
"tsc": "tsc"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addon-essentials": "^6.0.12",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-knobs": "^6.0.12",
"@storybook/addon-links": "^6.0.12",
"@storybook/addons": "^6.0.12",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.0.12",
"@storybook/storybook-deployer": "^2.8.6",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/react-window": "^1.8.2",
"@types/react-window-infinite-loader": "^1.0.3",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.1.0",
"focus-visible": "^5.1.0",
"jest": "^26.0.1",
"jest-enzyme": "^7.1.2",
"jest-styled-components": "^7.0.2",
"jsdom": "^16.2.2",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-window": "^1.8.5",
"react-window-infinite-loader": "^1.0.5",
"rimraf": "^3.0.2",
"styled-components": "^5.1.1",
"styled-reset": "^4.1.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
}
}