-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.74 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
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
{
"name": "fuck",
"version": "0.1.0",
"description": "learn",
"repository": {
"type": "git",
"url": "https://github.com/wut1/fuck.git"
},
"author": "chex",
"license": "MIT",
"scripts": {
"ng": "ng",
"ng:build": "ng build",
"ng:build:prod": "npm run ng:build -- --prod --env=prod",
"ng:build:prod:aot": "npm run ng:build:prod -- --aot",
"clean:dist_client": "node rmStaticAsset dist_client",
"clean:dist_server": "node rmStaticAsset dist_server",
"start": "concurrently -k -p \"[{name}]\" -n \"Server,Client\" -c \"blue.bold,green.bold\" \"npm run start:server\" \"npm run start:client:hmr\"",
"start:server": "npm run watch:server",
"start:client": "ng serve",
"start:client:hmr": "ng serve --hmr",
"build:server": "npm run clean:dist_server && npm run build-ts",
"build-ts": "tsc --project tsconfig.server.json",
"serve": "nodemon dist_server/server.js",
"watch:server": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run serve\"",
"watch-ts": "tsc --project tsconfig.server.json -w"
},
"dependencies": {
"@alicloud/sms-sdk": "^1.0.2",
"@angular/animations": "^4.3.4",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^4.3.4",
"@angular/compiler": "^4.3.4",
"@angular/core": "^4.3.4",
"@angular/forms": "^4.3.4",
"@angular/http": "^4.3.4",
"@angular/material": "^2.0.0-beta.8",
"@angular/platform-browser": "^4.3.4",
"@angular/platform-browser-dynamic": "^4.3.4",
"@angular/router": "^4.3.4",
"angular-froala-wysiwyg": "^1.0.0",
"async": "^2.1.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"busboy": "^0.2.14",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"core-js": "^2.5.0",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"froala-editor": "^2.6.5",
"html-to-text": "^3.3.0",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"moment": "^2.18.1",
"mongoose": "^4.6.6",
"morgan": "^1.7.0",
"ngx-infinite-scroll": "^0.5.1",
"nodemailer": "^2.6.4",
"passport": "0.3.2",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.10",
"passport-local": "^1.0.0",
"request": "^2.78.0",
"rxjs": "^5.4.3",
"sha1": "^1.1.1",
"uniqid": "^4.1.1",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "^1.3.0",
"@angular/compiler-cli": "^4.3.4",
"@angular/language-service": "^4.3.4",
"@types/async": "^2.0.40",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/busboy": "^0.2.3",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.32",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/html-to-text": "^1.4.30",
"@types/lodash": "^4.14.63",
"@types/moment": "^2.13.0",
"@types/mongodb": "^2.2.10",
"@types/mongoose": "^4.7.9",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/nodemailer": "^1.3.32",
"@types/passport": "^0.3.3",
"@types/passport-github2": "^1.1.1",
"@types/request": "0.0.45",
"@types/uniqid": "^4.1.1",
"concurrently": "^3.4.0",
"nodemon": "^1.11.0",
"shelljs": "^0.7.7",
"typescript": "^2.4.0"
}
}