-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "coloreact",
"version": "0.3.2",
"description": "A tiny Color Picker for React",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run lib",
"start": "webpack-dev-server --mode development --open",
"lib": "NODE_ENV=production babel -d lib/ src/",
"build": "webpack --mode production"
},
"keywords": [
"color-picker",
"react",
"color"
],
"author": "Lionel T <elrumordelaluz@hotmail.com> (elrumordelaluz.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elrumordelaluz/coloreact"
},
"devDependencies": {
"@babel/cli": "7.6.2",
"@babel/core": "7.6.2",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/preset-env": "7.6.2",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.6",
"css-loader": "3.2.0",
"mini-css-extract-plugin": "0.8.0",
"prop-types": "15.7.2",
"react": "16.10.1",
"react-dom": "16.10.1",
"react-syntax-highlighter": "11.0.2",
"style-loader": "1.0.0",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.1"
},
"dependencies": {
"hoist-non-react-statics": "3.3.0",
"lodash.throttle": "4.1.1",
"tinycolor2": "^1.3.0"
},
"peerDependencies": {
"react": ">= 15.6.1"
}
}