-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 933 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
{
"name": "@riptusk331/react-login",
"version": "0.0.1",
"description": "User session management for React",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"test": "jest --watch",
"coverage": "codecov"
},
"author": "Ryan P. Joyce",
"license": "MIT",
"dependencies": {
"crypto-js": "^4.0.0",
"react": "^16.13.1",
"universal-cookie": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.1",
"@babel/runtime": "^7.11.2",
"codecov": "^3.7.2",
"core-js": "3",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2"
}
}