forked from devfolioco/react-otp-input
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
{
"name": "react-otp-input",
"version": "0.3.1",
"description": "A fully customizable, one-time password input component for the web built with React",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run demo\"",
"build": "babel src/lib -d lib",
"build:watch": "babel src/lib -w -d lib",
"demo": "webpack-dev-server --mode development",
"demo:prod": "webpack --mode production",
"format": "prettier --write '**/*.{js,jsx}'",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"prepublish": "npm run build",
"predeploy": "npm run demo:prod",
"deploy": "gh-pages -d demo"
},
"keywords": [],
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.73.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.13.4",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.14"
},
"author": "Ajay NS <[email protected]>",
"license": "MIT",
"homepage": "https://devfolioco.github.io/react-otp-input",
"repository": {
"type": "git",
"url": "https://github.com/devfolioco/react-otp-input"
},
"bugs": {
"url": "https://github.com/devfolioco/react-otp-input/issues"
}
}