-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "@mile-hi-labs/react-session",
"version": "2.2.4",
"description": "A session management library for React applications.",
"homepage": "https://github.com/mile-hi-labs/react-session#readme",
"license": "MIT",
"main": "./lib/react-session.js",
"author": {
"name": "Eric Hubbell",
"email": "[email protected]",
"url": "https://github.com/ehubbell"
},
"repository": "https://github.com/mile-hi-labs/react-session",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/mile-hi-labs/react-session/issues"
},
"keywords": [
"react",
"react session",
"react auth",
"react authentication",
"react component"
],
"scripts": {
"clean": "rimraf ./lib && rimraf ./releases",
"build": "webpack --env development",
"build:prod": "webpack --env production",
"preversion": "npm run clean",
"version": "npm run deploy",
"predeploy": "npm run build:prod",
"deploy": "npm publish",
"postdeploy": "npm run git",
"pregit": "git add .",
"git": "git push --tags",
"format": "prettier --write src/**/*.jsx",
"lint": "eslint src/**/*.js[x]"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^5.0.0",
"eslint": "^7.17.0",
"eslint-config-react-app": "^6.0.0",
"prettier": "^2.2.1",
"react": "^16.13.1",
"rimraf": "^2.7.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"local-storage": "^2.0.0"
}
}