-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.4 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "angular2-authentication-sample",
"version": "0.1.0",
"description": "This is a sample project that shows how to add authentication to an Angular 2 (ng2) and express 4, mysql, sequelize",
"main": "",
"scripts": {
"server:dev": "cd backend && npm i && node ./bin/www.js",
"server:dev:debug": "cd backend && npm i && node --debug-brk ./bin/www.js",
"server:prod": "cd backend && npm i && cd .. && NODE_ENV=production forever start backend",
"server:prod:debug": "cd backend && npm i && NODE_ENV=production node --debug-brk ./bin/www.js",
"server:prod-windows": "cd backend && npm i && cd .. && set NODE_ENV=production forever start backend",
"front:dev": "npm i && webpack-dev-server --inline -d --colors --display-error-details --display-cached --port 3000 --watch",
"front:prod": "webpack -p --config webpack.production.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/kincjf/ankroom.git"
},
"contributors": [
"Seonho Kim <sinho0689@gmail.com>",
"DongYun Yu",
"Wongyu Yu"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kincjf/ankroom/issues"
},
"homepage": "https://github.com/kincjf/ankroom",
"dependencies": {
"@angular/common": "2.0.0-rc.3",
"@angular/compiler": "2.0.0-rc.3",
"@angular/core": "^2.0.0-rc.3",
"@angular/http": "2.0.0-rc.3",
"@angular/platform-browser": "2.0.0-rc.3",
"@angular/platform-browser-dynamic": "2.0.0-rc.3",
"@angular/platform-server": "2.0.0-rc.3",
"@angular/router": "^3.0.0-alpha.7",
"@types/lodash": "^4.14.34",
"angular2-config": "^1.1.1",
"angular2-jwt": "^0.1.16",
"app-root-path": "^2.0.1",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.6",
"child-process-promise": "^2.1.3",
"core-js": "^2.4.0",
"cors": "^2.8.0",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"es6-promise": "^3.1.2",
"es6-shim": "^0.33.13",
"es7-reflect-metadata": "^1.6.0",
"express": "^4.14.0",
"jquery": "^3.1.0",
"jsonwebtoken": "^7.1.9",
"jwt-decode": "^2.0.1",
"lodash": "^4.15.0",
"mailchimp-v3": "^1.0.1",
"mailgun-js": "^0.7.12",
"moment": "^2.15.1",
"morgan": "^1.7.0",
"mysql": "^2.11.1",
"ng2-file-upload": "^1.0.3",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"rxjs": "5.0.0-beta.6",
"sequelize": "^3.24.1",
"typings": "^1.3.3",
"zone.js": "~0.6.12"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-1": "^6.13.0",
"clean-webpack-plugin": "^0.1.11",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"node-debug": "^0.1.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"ts-loader": "^0.8.2",
"tsconfig-lint": "^0.12.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.3",
"typedoc": "^0.4.3",
"typescript": "^2.0.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}