forked from jungho/azure-ad-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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": "yet_another_blog_app",
"version": "1.0.0",
"description": "Simple blog app to demonstrate Azure AD authentication scenarios.",
"main": "server.js",
"scripts": {
"build": "yarn run clean && webpack",
"clean": "rimraf dist",
"start": "DEBUG=express:* && nodemon server.js",
"build-prod": "NODE_ENV=production yarn run clean && webpack -p"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jungho_kim/yaba.git"
},
"keywords": [
"Azure",
"Active Directory",
"Node",
"OAuth"
],
"author": "Jungho Kim",
"license": "ISC",
"homepage": "https://bitbucket.org/jungho_kim/azure-ad-authentication#readme",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.17.1",
"config": "^1.25.1",
"express": "^4.15.2",
"lodash": "^4.17.4",
"mongoose": "^4.9.2",
"passport": "^0.3.2",
"passport-azure-ad": "^3.0.5",
"react": "0.14.3",
"react-dom": "0.14.3",
"react-redux": "4.0.0",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-form": "4.1.3",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"style-loader": "^0.16.0",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2"
}
}