This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.96 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.96 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
{
"name": "@userfront/react",
"version": "0.3.4",
"description": "Userfront React binding",
"source": "src/index.js",
"main": "build/userfront-react.js",
"module": "build/userfront-react.module.js",
"unpkg": "build/userfront-react.umd.js",
"scripts": {
"test:react-16": "REACT_VERSION=16 jest",
"test:react-17": "REACT_VERSION=17 jest",
"test:react-18": "REACT_VERSION=18 jest",
"test:default": "jest",
"test:watch": "jest --watch",
"test": "concurrently -g \"npm run test:react-16\" \"npm run test:react-17\" \"npm run test:react-18\"",
"build": "microbundle --jsx React.createElement",
"pub": "npm version patch --force && npm publish",
"build:beta": "npm version prerelease --preid=beta && microbundle --jsx React.createElement",
"pub:beta": "npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userfront/userfront-react.git"
},
"engines": {
"npm": ">=6.9.0"
},
"keywords": [
"userfront"
],
"author": "Userfront",
"bugs": {
"url": "https://github.com/userfront/userfront-react/issues"
},
"homepage": "https://github.com/userfront/userfront-react#readme",
"dependencies": {
"@anymod/core": "^0.1.51",
"@userfront/core": "^0.6.5"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@testing-library/react": "^13.3.0",
"@testing-library/react-legacy": "npm:@testing-library/react@^12.1.2",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"concurrently": "^7.2.2",
"es6-promise": "^4.2.8",
"jest": "^26.6.1",
"microbundle": "^0.12.4",
"nock": "^13.0.4",
"react": "^18.1.0",
"react-16": "npm:react@^16.14.0",
"react-17": "npm:react@^17.0.1",
"react-dom": "^18.1.0",
"react-dom-16": "npm:react-dom@^16.14.0",
"react-dom-17": "npm:react-dom@^17.0.1"
}
}