-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
121 lines (121 loc) · 4.38 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "famn",
"version": "0.1.3",
"description": "famn - angular2 application seed",
"scripts": {
"rimraf": "rimraf",
"tslint": "tslint",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"clean": "yarn cache clean && yarn run rimraf -- node_modules dist dll compiled",
"clean:dist": "yarn run rimraf -- dist",
"clean:dll": "yarn run rimraf -- dll",
"clean:aot": "yarn run rimraf -- aot",
"start": "yarn run start:hmr",
"start:hmr": "NODE_ENV=development HMR=true nodemon --watch 'app/**/*.ts' --exec 'ts-node' server.ts",
"start:prod": "NODE_ENV=production node ./dist/server/server.bundle.js",
"build": "yarn run build:client:dev",
"build:server": "yarn run build:server:prod",
"prebuild:client:dev": "yarn run clean:dist",
"prebuild:client:prod": "yarn run clean:dist",
"prebuild:client:aot:prod": "yarn run clean:dist && yarn run clean:aot",
"build:client:dev": "webpack --config ./client/config/webpack.dev.ts --progress --profile",
"build:client:prod": "webpack --config ./client/config/webpack.prod.ts --progress --profile --bail",
"build:client:aot:prod": "webpack --config ./client/config/webpack.prod.ts --progress --profile --bail",
"build:server:prod": "webpack --config ./app/webpack/webpack.server.common.ts --progress --profile --bail",
"lint": "yarn run tslint \"client/**/*.ts\""
},
"author": "Jiale Hu <jiale@implustech.com>",
"license": "MIT",
"dependencies": {
"@angular/common": "2.4.8",
"@angular/compiler": "2.4.8",
"@angular/core": "2.4.8",
"@angular/flex-layout": "2.0.0-rc.1",
"@angular/forms": "2.4.8",
"@angular/http": "2.4.8",
"@angular/material": "2.0.0-beta.2",
"@angular/platform-browser": "2.4.8",
"@angular/platform-browser-dynamic": "2.4.8",
"@angular/platform-server": "2.4.8",
"@angular/router": "3.4.8",
"@angularclass/form-validators": "^1.0.12",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^2.2.1",
"ag-grid": "^8.1.1",
"ag-grid-angular": "8.1.0",
"angular-router-loader": "^0.4.0",
"body-parser": "^1.15.2",
"bunyan": "^1.8.3",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"core-js": "^2.4.1",
"cors": "^2.8.0",
"feathers": "~2.0.3",
"feathers-authentication": "~1.1.1",
"feathers-authentication-client": "~0.3.1",
"feathers-authentication-jwt": "~0.3.1",
"feathers-authentication-local": "~0.3.3",
"feathers-configuration": "~0.4.1",
"feathers-errors": "^2.5.0",
"feathers-hooks": "^1.8.1",
"feathers-mongoose": "^5.0.3",
"feathers-permissions": "0.1.1",
"feathers-rest": "^1.7.1",
"feathers-socketio": "^1.5.2",
"mongoose": "^4.8.6",
"rxjs": "~5.2.0",
"zone.js": "~0.7.8"
},
"devDependencies": {
"@angular/compiler-cli": "2.4.8",
"@angularclass/hmr": "1.2.2",
"@angularclass/hmr-loader": "3.0.2",
"@ngrx/store-devtools": "3.2.3",
"@ngrx/store-log-monitor": "3.0.2",
"@types/body-parser": "^0.0.34",
"@types/bunyan": "^0.0.35",
"@types/chalk": "^0.4.31",
"@types/compression": "^0.0.33",
"@types/core-js": "^0.9.35",
"@types/cors": "0.0.31",
"@types/mongoose": "^4.5.38",
"@types/node": "^7.0.0",
"add-asset-html-webpack-plugin": "^1.0.2",
"angular2-template-loader": "^0.6.0",
"assets-webpack-plugin": "^3.5.1",
"awesome-typescript-loader": "~3.0.0-beta.18",
"codelyzer": "~2.0.0-beta.4",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.26.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "~2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"ng-router-loader": "^2.1.0",
"ngc-webpack": "1.1.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"optimize-js-plugin": "0.0.4",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.0",
"script-ext-html-webpack-plugin": "^1.6.2",
"style-loader": "^0.13.1",
"to-string-loader": "^1.1.4",
"ts-node": "^2.0.0",
"tslib": "^1.5.0",
"tslint": "~4.4.2",
"tslint-loader": "^3.3.0",
"typescript": "~2.1.6",
"url-loader": "^0.5.7",
"webpack": "2.2.0",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "2.4.1",
"webpack-dll-bundles-plugin": "^1.0.0-beta.5",
"webpack-hot-middleware": "2.17.1",
"webpack-merge": "~3.0.0"
}
}