-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1001 Bytes
/
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
{
"name": "react-helper",
"version": "5.0.1",
"description": "A helper that makes it extremely easy to add react to your node app.",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/_mocha --recursive"
},
"keywords": [
"react",
"mvc",
"node",
"express",
"sails",
"hapi"
],
"author": {
"name": "Tyler Swayne",
"email": "[email protected]",
"url": "https://github.com/tswayne"
},
"license": "ISC",
"dependencies": {
"escape-html": "^1.0.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tswayne/react-helper.git"
},
"bugs": {
"url": "https://github.com/tswayne/react-helper/issues",
"email": "[email protected]"
},
"devDependencies": {
"chai": "^4.3.7",
"jsdom": "^21.1.0",
"mocha": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^15.0.1"
}
}