-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "jwt-react-redux-auth-example",
"version": "0.0.0",
"description": "It is the example of authentication using JWT in the SPA of React-Redax.",
"engines": {
"node": "6.1.0"
},
"main": "server.js",
"scripts": {
"start": "babel-node ./server.js",
"dev": "DEBUG=jwt-react-redux-auth-example:* npm start",
"lint": "eslint **/*.js",
"build-js": "browserify --extension=jsx src/app.jsx -t babelify -t uglifyify -o public/assets/bundle.js",
"watch-js": "watchify --debug --extension=jsx src/app.jsx -t babelify -o public/assets/bundle.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nabeliwo/jwt-react-redux-auth-example.git"
},
"author": "nabeliwo",
"license": "MIT",
"bugs": {
"url": "https://github.com/nabeliwo/jwt-react-redux-auth-example/issues"
},
"homepage": "https://github.com/nabeliwo/jwt-react-redux-auth-example#readme",
"dependencies": {
"boom": "^3.2.1",
"config": "^1.20.4",
"crypt": "0.0.1",
"handlebars": "^4.0.5",
"hapi": "^13.4.1",
"inert": "^4.0.0",
"jsonwebtoken": "^7.0.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-act": "^0.4.2",
"redux-logger": "^2.6.1",
"redux-saga": "^0.10.4",
"vision": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
}
}