-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.4 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
79
80
81
82
83
84
{
"name": "@mintgate/react-mintgate",
"version": "0.2.0",
"private": false,
"source": "src/lib.js",
"main": "dist/lib.js",
"module": "dist/lib.module.js",
"unpkg": "dist/lib.umd.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/MintKudos/mintgate-widget"
},
"dependencies": {
"@craco/craco": "^6.1.1",
"@headlessui/react": "^1.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@mintgate/evm-chains": "^0.3.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^9",
"daisyui": "^0.20.0",
"postcss": "^7",
"react-masonry-css": "^1.0.16",
"react-use": "^17.2.3",
"rollup": "^2.46.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"web-vitals": "^1.0.1"
},
"scripts": {
"build:css": "tailwind build src/index.css -o src/tailwind.css",
"start": "craco start",
"dev": "microbundle watch",
"build": "microbundle --globals TPPFormWidget=TPPFormWidget,react=React,react-dom=ReactDOM --jsx React.createElement --jsxImportSource react",
"build2": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"build_old": "craco build",
"test": "craco 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"
]
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat",
"install-peers-cli": "^2.2.0",
"microbundle": "^0.13.0",
"react-scripts": "4.0.3",
"rollup": "^2.46.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"web-vitals": "^1.0.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}