forked from lijinke666/react-turntable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.04 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
93
{
"name": "react-turntable",
"version": "1.3.1",
"main": "lib/index.js",
"description": "A HTML5 Turntable component for React",
"scripts": {
"start": "npm run demo",
"test": "jest --no-cache",
"clean": "rimraf lib && rimraf assets",
"auto": "postcss -u autoprefixer -c postcss.config.json --no-map -o assets/index.css assets/index.css",
"build:css": "lessc src/index.less assets/index.css && npm run auto",
"build:js": "babel src -d lib",
"build": "npm run clean && npm run build:js && npm run build:css && npm run auto",
"build:demo": "webpack --env.mode=PROD --progress --config ./example/webpack.config.js",
"demo": "webpack-dev-server --progress --inline --hot --config ./example/webpack.config.js",
"prepublish": "npm run build"
},
"author": "jinke.li",
"repository": {
"type": "git",
"url": "https://github.com/lijinke666/react-turntable"
},
"bugs": {
"url": "https://github.com/lijinke666/react-turntable/issues"
},
"homepage": "https://lijinke666.github.io/react-turntable",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"ui",
"react-turntable",
"HTML5",
"rotate",
"turntable",
"prize",
"component"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.0"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-cli": "^6.16.0",
"babel-core": "6.x",
"babel-jest": "^19.0.0",
"babel-loader": "6.x",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "6.x",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.23.0",
"copy-webpack-plugin": "latest",
"css-loader": "~0.23.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"imagemin-webpack-plugin": "^1.4.4",
"jest": "^19.0.2",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"open-browser-webpack-plugin": "0.0.2",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss": "^6.0.12",
"postcss-cli": "^4.1.1",
"postcss-loader": "^1.2.2",
"rc-button": "^0.1.5",
"rc-message": "^1.3.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-jinke-music-player": "latest",
"react-loader": "^2.4.0",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.6.0",
"style-loader": "~0.13.0",
"url-loader": "^0.5.8",
"webpack": "^2.7.0",
"webpack-dev-server": "^3.1.11"
}
}