-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
76 lines (76 loc) · 2.42 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
{
"name": "react-picky-date-time",
"version": "1.1.6",
"description": "a react date time picker component",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/edwardfhsiao/react-picky-date-time.git"
},
"keywords": [
"react",
"picky",
"date",
"time",
"picker"
],
"author": "Edward Xiao",
"license": "ISC",
"bugs": {
"url": "https://github.com/edwardfhsiao/react-picky-date-time/issues"
},
"homepage": "https://github.com/edwardfhsiao/react-picky-date-time#readme",
"scripts": {
"babel": "babel ./src/js/App --out-dir ./lib",
"build": "rm -rf lib && npm run babel && npm run build_prod",
"webpack_dev": "rm -rf dist && NODE_ENV=development ./node_modules/.bin/webpack --config ./webpack/development.config.js --progress --watch",
"webpack_prod": "rm -rf dist && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/production.config.js --progress -p",
"build_dev": "npm run webpack_dev",
"build_prod": "npm run webpack_prod"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.7.4",
"classnames": "^2.2.5",
"lost": "^8.0.0",
"object-assign": "^4.1.0",
"open-color": "^1.5.1",
"prop-types": "^15.5.6",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-shallow-compare": "^15.5.2",
"react-addons-update": "^15.3.2",
"react-dom": "^15.3.2",
"react-newline-to-break": "^1.0.6"
},
"devDependencies": {
"add-asset-html-webpack-plugin": "^1.0.2",
"babel-core": "^6.2.1",
"babel-loader": "^6.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.2",
"empty-module": "^0.0.2",
"eslint": "^3.16.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"lodash": "^4.14.0",
"node-sass": "^4.5.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.2",
"postcss-cssnext": "^2.9.0",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.2",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-manifest-plugin": "^1.0.0"
}
}