-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
{
"name": "react-coverflow",
"version": "0.2.20",
"description": "Carousel of coverflow effect",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/andyyou/react-coverflow"
},
"scripts": {
"test": "make test",
"prepublishOnly": "rm -rf dist && webpack --progress --colors -d",
"clean": "rm -rf dist && rm -rf site/js/*.bundle.js",
"build-npm": "rm -rf dist && webpack --progress --colors -d --config webpack.prod.js",
"build:watch": "webpack --progress --colors --watch",
"lint": "eslint ./src/Coverflow.js eslint ./site/js/main.js",
"build-site": "rm -rf site/js/*.bundle.js && NODE_ENV=production webpack --config site/webpack.prod.js",
"dev": "rm -rf site/js/*.bundle.js && NODE_ENV=react-hot webpack-dev-server --config site/webpack.dev.js --progress --colors --inline --hot --port 3000 --host 0.0.0.0 --content-base site"
},
"postcss": {
"parser": "sugarss",
"map": false,
"from": "/path/to/src.sss",
"to": "/path/to/dest.css",
"plugins": {
"postcss-plugin": {}
}
},
"keywords": [
"Carousel",
"Coverflow",
"Image slider",
"3D",
"React",
"react-component"
],
"author": {
"name": "andyyou",
"email": "[email protected]",
"url": "http://andyyou.github.io/"
},
"license": "MIT",
"dependencies": {
"radium": "^0.25.1"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2"
},
"url": "https://github.com/andyyou/react-coverflow.git",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"postcss-load-config": "^2.0.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}