-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 3.07 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
{
"name": "@welovedevs/ui",
"version": "1.2.8",
"description": "WeLoveDevs.com UI components",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"package": "tsc",
"postpackage": "cpy ./assets .. --parents --cwd=src",
"test-build": "tsc --noEmit",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook",
"version:beta": "npm version prerelease --preid=beta",
"version:release": "npm version ${VERSION:-patch}",
"postpublish": "npm run publish-githubpackages",
"publish-githubpackages": "npm publish --access public --ignore-scripts --@welovedevs:registry='https://npm.pkg.github.com'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welovedevs/wld-design-system.git"
},
"author": "",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/welovedevs/wld-design-system/issues"
},
"homepage": "https://github.com/welovedevs/wld-design-system#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"classnames": "^2.2.6",
"framer-motion": "^3.6.7",
"lodash": "^4.17.15",
"react-autosuggest": "^9.4.3",
"react-emoji-render": "^1.2.1",
"react-infinite-scroll-component": "^6.1.0",
"react-measure": "^2.3.0",
"react-slick": "^0.25.2",
"react-sortable-hoc": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@storybook/addon-actions": "^6.3.9",
"@storybook/addon-docs": "^6.3.9",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.9",
"@storybook/addon-viewport": "^6.3.9",
"@storybook/addons": "^6.3.9",
"@storybook/react": "^6.3.9",
"@storybook/theming": "^6.3.9",
"@types/classnames": "^2.2.10",
"@types/events": "^3.0.0",
"@types/jss": "^10.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "12.12.6",
"@types/react-autosuggest": "^10.0.0",
"@types/react-measure": "^2.0.6",
"cpy-cli": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.0.7",
"ora": "^4.0.3",
"prettier": "^2.0.5",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"readline-sync": "^1.4.10",
"typescript": "^4.0.2",
"yargs": "^15.1.0"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "npm run test-build --scripts-prepend-node-path && rimraf ./test_build"
}
}
}