forked from longlongago2/rm-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
{
"name": "@longlongago2/rm_calendar",
"version": "1.0.1",
"description": "react mobile calendar",
"main": "lib/rm-calendar.js",
"directories": {
"example": "example",
"lib": "lib"
},
"scripts": {
"dev": "webpack-dev-server --env.development --build-type=dev",
"dist": "rimraf dist && webpack --env.production --build-type=dist",
"lib": "rimraf lib && webpack --env.production --build-type=lib",
"prepublish": "npm run dist && npm run lib",
"publish": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longlongago2/rm-calendar.git"
},
"keywords": [
"react",
"mobile",
"calendar",
"schedule"
],
"author": "longlongago2",
"license": "MIT",
"bugs": {
"url": "https://github.com/longlongago2/rm-calendar/issues"
},
"homepage": "https://github.com/longlongago2/rm-calendar#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"babel-preset-react-app": "^7.0.0",
"chalk": "^2.4.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.0.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"prop-types": "^15.6.2",
"quick-local-ip": "^1.0.7",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-swipeable-views": "^0.13.0",
"react-swipeable-views-utils": "^0.13.0",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.13",
"webpack-merge": "^4.1.5"
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"dependencies": {
"moment": "^2.23.0",
"react": "^16.7.0"
}
}