This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "material-scrollable-time-picker",
"version": "0.2.1",
"description": "A scrollable time picker for Material-UI",
"main": "dist/scrollable-time-picker.min.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "webpack",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:dm-drogeriemarkt/material-scrollable-time-picker.git"
},
"keywords": [
"scrollable",
"time",
"picker",
"material-ui",
"react"
],
"author": "Sven Müller, Paul Jodiss",
"license": "MIT",
"devDependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@storybook/react": "^4.1.1",
"babel-core": "^6.26.0",
"babel-jest": "^22.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.0.3",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^4.3.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"transform": {
".*\\.jsx$|.*\\.js$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"<rootDir>/setupTests.js"
],
"testURL": "http://localhost"
}
}