-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
{
"name": "formland-react-select",
"version": "0.1.1",
"private": false,
"description": "react-select components for Formland",
"license": "MIT",
"author": "Pranesh Ravi <praneshpranesh@gmail.com>",
"main": "lib/index.js",
"repository": "git@github.com:praneshr/formland-react-select.git",
"scripts": {
"build": "babel src/ --out-dir lib",
"build:examples": "webpack --progress --colors",
"build:examples:watch": "webpack --progress --colors --watch",
"build:watch": "babel src/ --out-dir lib --watch",
"prepublish": "rm -rf lib && yarn build",
"postpublish": "yarn publish:examples:local",
"publish:examples:local": "NODE_ENV=production yarn build:examples && gh-pages -d examples/build",
"start:dev": "webpack-dev-server --hot --open"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.55",
"@babel/core": "^7.0.0-beta.55",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.55",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"@babel/preset-react": "^7.0.0-beta.55",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"formland": "^1.0.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-select": "^2.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"peerDependencies": {
"formland": "^1.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-select": "^2.0.0"
}
}