-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "react-netlify-identity",
"version": "0.2.7",
"description": "use netlify identity with react",
"author": "sw-yx",
"license": "MIT",
"repository": "https://www.github.com/sw-yx/react-netlify-identity",
"main": "dist/index.js",
"umd:main": "dist/react-netlify-identity.umd.production.js",
"module": "dist/react-netlify-identity.esm.js",
"typings": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"unused_prepare": "yarn run build",
"version": "yarn run build && auto-changelog -p --template keepachangelog && git add .",
"prepublishOnly": "git push && git push --tags && gh-release",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"gotrue-js": "^0.9.25"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@svgr/rollup": "^5.0.1",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"auto-changelog": "^1.16.2",
"gh-release": "^3.5.0",
"husky": "^4.0.9",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tsdx": "^0.12.3",
"typescript": "^3.7.4"
},
"files": [
"dist"
]
}