-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "spring-picker",
"version": "16.0.1",
"description": "react picker",
"scripts": {
"start": "cross-env NODE_ENV=dev webpack-dev-server --inline --progress",
"build": "rimraf build && cross-env NODE_ENV=production webpack -p --progress",
"build-js": "babel src/components --out-dir lib --source-maps --extensions .jsx,.js --copy-files",
"build-css": "node-sass src/components/scss/index.scss lib/style.css",
"prepublish": "rimraf lib && npm run build-css && npm run build-js",
"gh-pages": "node_modules/.bin/gh-pages -d build"
},
"babel": {
"presets": [
"es2015"
]
},
"homepage": "https://github.com/springalskey/picker.git",
"repository": {
"type": "git",
"url": "git+https://github.com/springalskey/picker.git"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-transition-group": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"ip": "^1.1.5",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^1.16.5"
},
"bugs": {
"url": "https://github.com/springalskey/picker/issues"
},
"main": "lib/index.js",
"style": "lib/style.css",
"author": "springalskey"
}