-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "@propelauth/base-elements",
"description": "Base elements for PropelAuth's component library",
"version": "0.0.17",
"license": "MIT",
"keywords": [
"auth",
"react",
"user"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "echo \"No test specified\"",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.00",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"babel-loader": "^8.2.2",
"core-js": "^3.11.1",
"postcss": "^8.4.20",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.46.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"dependencies": {
"@mantine/core": "^6.0.17"
}
}