forked from chingyawhao/material-ui-next-pickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "material-ui-next-pickers",
"version": "0.0.13",
"description": "Datepicker and timepicker for material-ui next",
"keywords": [
"material-ui",
"next",
"date",
"time",
"datepicker",
"timepicker",
"calendar",
"clock"
],
"repository": {
"type": "github",
"url": "https://github.com/chingyawhao/material-ui-next-pickers"
},
"homepage": "http://chingyawhao.github.io/material-ui-pickers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run module",
"module": "tsc --rootDir src --declaration true --outDir dist",
"start:dev": "NODE_ENV=development webpack-dev-server --content-base app --history-api-fallback",
"compile": "NODE_ENV=production webpack --display-error-details",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Ching Yaw Hao",
"email": "chingyawhao14@gmail.com",
"url": "http://chingyawhao.github.io/"
},
"license": "ISC",
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"classnames": "^2.2.6",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-swipeable-views": "^0.12.16",
"react-swipeable-views-utils": "^0.12.16",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^4.5.0",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}