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 10
/
package.json
119 lines (119 loc) · 3.63 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
{
"name": "react-notification-center",
"version": "1.2.2",
"description": "react-notification-center keep all your notification in a single place",
"main": "lib/index.js",
"jsnext:main": "./src/notification/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-notification.css",
"less:m": "node_modules/.bin/lessc src/less/index.less --autoprefix=\"last 2 versions\" --clean-css lib/css/react-redux-notification.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": 4001
}
},
"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-notification-center"
},
"bugs": {
"url": "https://github.com/diegoddox/react-notification-center/issues"
},
"files": [
"src/",
"lib/",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"React.js",
"React",
"react",
"notification",
"react-notification",
"react-component",
"notification",
"react-notification",
"react notifications",
"react notification",
"changelog"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.2.1",
"babel-eslint": "^6.0.2",
"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.8",
"chance": "^1.0.1",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^4.2.3",
"html-webpack-plugin": "^2.15.0",
"jshint": "^2.9.1-rc1",
"jshint-loader": "^0.8.3",
"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",
"moment": "^2.12.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"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",
"element-class": "^0.2.2"
}
}