-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "react-toast-mobile",
"version": "1.0.9",
"description": "Simple react toast overlay component,easily used in mobile projects",
"main": "lib/react-toast-mobile.js",
"scripts": {
"dev": "cross-env WEBPACK_ENV=develop webpack-dev-server --hot",
"examples": "cross-env WEBPACK_ENV=examples webpack",
"build": "cross-env WEBPACK_ENV=production webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ray0324/react-toast-mobile.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"peerDependencies": {
"react": ">=15",
"prop-types": ">=15",
"react-transition-group": "^2.2.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-transition-group": "^2.2.0"
}
}