-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.8 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.8 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-firebase-web-auth",
"version": "0.1.72",
"main": "dist/cjs/index",
"module": "dist/esm/index",
"private": false,
"license": "MIT",
"description": "React components for Firebase UI",
"author": "Nguyen Thuc <ngthuc.com>",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.6",
"firebase": "^9.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-new-window": "^0.2.2",
"react-zalo-auth-kit": "^1.0.69"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.3",
"@mdx-js/react": "^2.1.3",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.47",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"libphonenumber-js": "^1.10.13",
"postcss": "^8.4.17",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-scripts": "5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"theme-ui": "^0.15.1",
"ts-standard": "^12.0.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.6",
"firebase": "^9.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-new-window": "^0.2.2"
},
"scripts": {
"pack": "rm -rf dist && rollup -c",
"build": "rm -rf dist && babel src --out-dir dist --copy-files",
"local": "rm -rf example/src/components/ && cp -R src/ example/src/components/",
"patch": "npm version patch --force",
"minor": "npm version minor --force",
"major": "npm version major --force",
"version": "npm -f version",
"postbuild": "cp package.json dist && cp .npmignore dist && cp README.txt dist/README.md",
"auto": "npm run patch && npm run build && cd dist/ && npm run publisher && cd ../",
"publisher": "npm publish --access public",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}