forked from javierbyte/cohesive-colors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "cohesive-colors",
"version": "0.1.0",
"description": "A tool for creating more cohesive color schemes.",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node webpack/devServer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/javierbyte/cohesive-colors"
},
"keywords": [],
"author": "Javier Bórquez <[email protected]> (http://github.com/javierbyte)",
"license": "CC0-1.0",
"homepage": "https://github.com/javierbyte/cohesive-colors",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^5.0.3",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"rimraf": "^2.4.3",
"standard": "^10.0.2",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"clipboard": "^1.5.15",
"colorblendjs": "^0.1.2",
"jsonp": "^0.2.0",
"lodash": "^4.7.0",
"randomcolor": "^0.5.3",
"react": "^15.6.1",
"react-click-outside": "github:tj/react-click-outside",
"react-color": "^2.13.4",
"react-dom": "^15.6.1",
"tinycolor2": "^1.3.0"
}
}