-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
114 lines (114 loc) · 3.21 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
{
"name": "react-numpad",
"version": "5.1.2",
"description": "Numpad react component, as number input or time input",
"homepage": "https://gpietro.github.io/react-numpad-demo/",
"main": "dist/react-numpad.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gpietro/react-numpad"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:watch": "babel lib -w --ignore **/__tests__/*.js -d build",
"lint": "eslint lib/** --fix; exit 0",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006 -c .storybook",
"test": "jest --verbose false",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier",
"git add"
]
},
"author": "Pietro Ghezzi",
"license": "ISC",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/plugin-transform-regenerator": "^7.10.1",
"@babel/preset-env": "^7.10.0",
"@babel/preset-react": "^7.10.0",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/react": "^5.3.19",
"@testing-library/dom": "^7.5.8",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-watch": "^6.0.1",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.6",
"node-sass": "^4.14.1",
"polished": "^3.6.3",
"prettier": "^2.0.5",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.13.1",
"sass-loader": "^8.0.2",
"sinon": "^9.0.2",
"sinon-sandbox": "^2.0.6",
"storybook-addon-specifications": "^2.1.5",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1"
},
"dependencies": {
"color": "^3.1.2",
"lodash.chunk": "^4.2.0",
"lodash.isequal": "^4.5.0",
"moment": "^2.26.0",
"prop-types": "^15.7.2",
"react-portal": "^4.2.1",
"react-swipeable": "^5.5.1",
"styled-components": "^4.3.2",
"use-onclickoutside": "^0.3.1"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}