-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "react-helpers-web",
"version": "0.1.3",
"description": "**components, utils and hooks for react-DOM**",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Conduct/react-helpers-web.git"
},
"keywords": [
"react",
"react-native",
"typescript"
],
"author": "Hugo McPhee",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduct/react-helpers-web/issues"
},
"homepage": "https://github.com/Conduct/react-helpers-web#readme",
"typings": "./lib/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"babel-eslint": "^10.1.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7",
"react": "^16.13.1",
"@types/react": "^16.9.43"
},
"files": [
"lib/**/*"
],
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
},
"dependencies": {
"use-resize-observer": "^6.1.0",
"react-spring": "^9.2.4",
"lodash.throttle": "^4.1.1",
"@emotion/core": "^10.0.34",
"@types/lodash.throttle": "^4.1.6"
},
"peerDependencies": {
"react": "^16.13.1"
}
}