forked from staylor/react-helmet-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.21 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
{
"name": "react-helmet-async",
"version": "1.3.0",
"description": "Thread-safe Helmet for React 16+ and friends",
"main": "lib/index.js",
"umd:main": "lib/index.umd.js",
"module": "lib/index.module.js",
"source": "src/index.js",
"types": "index.d.ts",
"repository": "http://github.com/staylor/react-helmet-async",
"author": "Scott Taylor <[email protected]>",
"license": "Apache-2.0",
"files": [
"lib/",
"src/",
"index.d.ts"
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"invariant": "^2.2.4",
"prop-types": "^15.7.2",
"react-fast-compare": "^3.2.0",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/eslint-parser": "7.19.1",
"@babel/eslint-plugin": "7.19.1",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"babel-preset-kyt-react": "1.3.19",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"enzyme-to-json": "3.6.2",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-kyt": "1.6.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.1.4",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jsdom": "16.4.0",
"microbundle": "0.15.1",
"prettier": "2.7.1",
"raf": "3.4.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "3.0.2"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint . --report-unused-disable-directives",
"lint-fix": "eslint . --fix",
"test": "NODE_ENV=test BABEL_ENV=test jest",
"test-watch": "yarn test --watch",
"test-update": "yarn test -u",
"compile": "yarn run clean && KYT_ENV_TYPE=client NODE_ENV=production microbundle --generateTypes=false --jsx React.createElement",
"prepare": "yarn compile && husky install"
}
}