This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
forked from SupremeTechnopriest/react-idle-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
73
74
75
76
77
78
{
"name": "react-idle-timer",
"version": "1.5.2",
"description": "Activity detection for React.js",
"main": "build/index.js",
"files": [
"build",
"examples"
],
"scripts": {
"clean": "rimraf build && rimraf examples/App.js && rimraf examples/init.js && rimraf examples/server.js",
"build": "NODE_ENV=production babel src -d build && babel src_examples -d examples",
"rebuild": "npm run clean && npm run build",
"start": "NODE_ENV=development node examples/server",
"test": "npm test",
"release": "standard-version",
"package": "npm run rebuild && npm version patch && npm publish --tag latest"
},
"keywords": [
"react",
"idle",
"idletimer",
"timer",
"activity",
"active"
],
"author": "Randy Lebeau",
"contributors": [
"Cole Chamberlain <[email protected]> (https://github.com/cchamberlain)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/supremetechnopriest/react-idle-timer.git"
},
"dependencies": {
"date-fns": "^1.28.5",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": "^16.x.x",
"react-dom": "^16.x.x",
"prop-types": "^15.x.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.3.15",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"del": "^1.2.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-eslint": "^0.14.0",
"gulp-jest": "^0.4.0",
"gulp-shell": "^0.4.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jest-cli": "^0.4.13",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.0",
"rimraf": "^2.4.3",
"standard-version": "^2.4.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
}
}