This repository has been archived by the owner on Jul 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
133 lines (133 loc) · 3.97 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "react-redux-modal",
"version": "0.5.2",
"description": "react-redux-modal is a React modal implemented with Redux",
"main": "lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"start": "better-npm-run dev-server",
"build:w": "better-npm-run build:w",
"build": "better-npm-run build && npm run less && npm run less:m",
"less": "node_modules/.bin/lessc src/less/index.less --autoprefix=\"last 2 versions\" lib/css/react-redux-modal.css",
"less:m": "node_modules/.bin/lessc src/less/index.less --autoprefix=\"last 2 versions\" --clean-css lib/css/react-redux-modal.min.css",
"clean": "better-npm-run clean",
"lint": "better-npm-run lint",
"build_app": "concurrent --kill-others & npm run clean & npm run lint & npm run build & npm run less & npm run less:m",
"buildc": "better-npm-run build_client"
},
"eslintConfig": {
"root": true
},
"betterScripts": {
"dev-server": {
"command": "./node_modules/.bin/webpack-dev-server --hot --inline --config build/webpack.config.js",
"env": {
"NODE_ENV": "development",
"NODE_PORT": 3001
}
},
"build_client": {
"command": "./node_modules/.bin/webpack --progress --config build/webpack.config.js",
"env": {
"NODE_ENV": "production"
}
},
"build": {
"command": "node_modules/.bin/babel src/ --out-dir lib"
},
"build:w": {
"command": "node_modules/.bin/babel -w src/ --out-dir lib"
},
"lint": {
"command": "node_modules/.bin/eslint . --ext .js --ext .jsx || true"
},
"clean": {
"command": "node_modules/.bin/rimraf dist lib"
}
},
"author": "Diego Oliveira",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diegoddox/react-redux-modal"
},
"bugs": {
"url": "https://github.com/diegoddox/react-redux-modal/issues"
},
"files": [
"lib/",
"src/",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"React.js",
"React",
"Redux",
"react",
"redux modal",
"react-redux-modal",
"react-component",
"modal",
"react modal",
"react redux modal",
"react modal redux"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-syntax-class-properties": "^6.1.18",
"babel-plugin-transform-class-properties": "^6.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.1.18",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-plugin-transform-proto-to-assign": "^6.6.5",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"better-npm-run": "0.0.4",
"chance": "^0.8.0",
"concurrently": "^1.0.0",
"core-js": "^2.0.2",
"css-loader": "^0.23.1",
"eslint": "^1.10.1",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.16.1",
"html-webpack-plugin": "^1.6.2",
"jasmine": "^2.3.2",
"jshint": "^2.9.1-rc1",
"jshint-loader": "^0.8.3",
"karma": "^0.13.15",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"lorem-ipsum": "^1.0.3",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.5",
"redux-logger": "^2.0.4",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"classnames": "^2.2.3",
"eventemitter3": "^1.1.1",
"uuid": "^2.0.1"
}
}