forked from grizzthedj/react-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "react-client-session",
"version": "0.0.8",
"description": "A simple object to manage a client session in a React app",
"main": "dist/App.js",
"module": "dist/App.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"git-deploy": "gulp build && gh-pages -d demo/public"
},
"repository": "https://github.com/grizzthedj/react-client-session.git",
"homepage": "",
"keywords": [
"react",
"session",
"client"
],
"author": "Christopher Smith",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@types/react": "*",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"del": "^6.0.0",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-shell": "^0.8.0",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "^17.0.1"
},
"jest": {
"verbose": true
},
"compilerOptions": {
"composite": true,
"declarationMap": true
}
}