-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 KB
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
{
"name": "node-login",
"version": "1.0.0",
"description": "login example used token to verify",
"main": "index.js",
"scripts": {
"build": "webpack --watch --config ./tools/webpack.dev.config.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linwalker/node-login.git"
},
"author": "linwalker",
"license": "ISC",
"bugs": {
"url": "https://github.com/linwalker/node-login/issues"
},
"homepage": "https://github.com/linwalker/node-login#readme",
"dependencies": {
"antd": "^2.7.2",
"bcrypt": "^0.8.7",
"busboy": "^0.2.14",
"co": "^4.6.0",
"debug": "^2.6.0",
"ejs": "^2.5.5",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-logger": "^1.3.0",
"koa-mysql-session": "0.0.2",
"koa-router": "^7.0.1",
"koa-send": "^3.2.0",
"koa-session-minimal": "^3.0.3",
"koa-static": "^2.0.0",
"koa-views": "^5.2.0",
"mongoose": "^4.9.9",
"node-fetch": "^1.7.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"request": "^2.81.0",
"validator": "^6.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.20.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"jsx-loader": "^0.13.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-sass": "^4.1.1",
"nodemon": "^1.11.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.0-rc.3",
"webpack-merge": "^2.0.0"
}
}