-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
78 lines (78 loc) · 2.55 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
{
"name": "@openware/react-barong",
"version": "1.4.5",
"description": "Barong React SignUp and SignIn component library",
"author": "openware",
"license": "Apache 2.0",
"repository": "openware/react-barong",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "",
"test:watch": "",
"build": "rollup -c",
"start": "cross-env BUILD=dev rollup -c -w",
"start-example": "cd example && yarn start",
"dev": "concurrently --kill-others \"yarn start\" \"yarn run start-example\"",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --ext .ts,.tsx src --fix"
},
"resolutions": {
"mem": ">= 4.0.0",
"eslint": ">= 4.18.2",
"js-yaml": ">= 3.13.1",
"minimist": ">= 1.2.2",
"webpack-dev-server": ">= 3.1.11",
"serialize-javascript": ">= 2.1.1"
},
"dependencies": {
"axios": "^0.21.0",
"bootstrap": "4.5.2",
"query-string": "^6.13.7",
"react-bootstrap": "1.0.0-beta.16",
"react-hook-form": "^6.9.6",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"concurrently": "^5.3.0",
"cross-env": "^5.1.4",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"gh-pages": "^1.2.0",
"prettier": "^2.1.2",
"react-router": "^3.2.6",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-typescript2": "^0.17.0",
"typescript": "^4.1.2"
},
"files": [
"dist"
]
}