-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.44 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.44 KB
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
{
"name": "react-fast-carousel",
"description": "A responsive React carousel utilizing browser's native scrollbar",
"keywords": [
"react-component",
"react",
"carousel",
"slides",
"scroll",
"responsive"
],
"author": "Peter Morawiec",
"version": "0.0.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/react-fast-carousel"
},
"bugs": "https://github.com/moarwick/react-fast-carousel/issues",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --content-base src/demos/",
"build": "rimraf public && webpack --progress --profile --colors",
"deploy": "npm run build && gh-pages -d public",
"dist": "babel src --out-dir lib --ignore demos",
"lint": "eslint src",
"lint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"prepublish": "npm run dist",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --no-semi --single-quote --print-width 100 --write",
"git add"
]
},
"browserify": {
"transform": [
"reactify"
]
},
"peerDependencies": {
"react": ">= 15.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.10.4",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"node-sass": "^4.5.1",
"postcss-loader": "^2.0.6",
"prettier": "^1.6.1",
"prop-types": "^15.5.10",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.3",
"sass-loader": "^6.0.3",
"standard": "^10.0.3",
"style-loader": "^0.18.2",
"url-loader": "^0.5.7",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
}
}