-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
90 lines (90 loc) · 2.88 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
{
"name": "ngx-modular-platform",
"version": "0.1.0",
"description": "A development platform based Angular, easy for multiple teams development.",
"main": "index.js",
"types": "types",
"scripts": {
"types": "gulp build:types --gulpfile build/gulpfile.js --cwd ./",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'modules/**/*.ts' || true",
"modules": "gulp modules --gulpfile build/gulpfile.js --cwd ./",
"modules:ngc": "ngc -p tsconfig-aot.json",
"modules:aot": "npm run modules:ngc && gulp modules-aot -r --gulpfile build/gulpfile.js --cwd ./",
"dev:app": "gulp app --gulpfile build/gulpfile.js --cwd ./",
"dev:vendor": "gulp vendor --gulpfile build/gulpfile.js --cwd ./",
"dev": "gulp --gulpfile build/gulpfile.js --cwd ./",
"build": "gulp release -r --gulpfile build/gulpfile.js --cwd ./",
"rollup": "gulp modules-rollup --gulpfile build/gulpfile.js --cwd ./",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hstarorg/ngx-modular-platform.git"
},
"keywords": [
"angular",
"modular",
"development",
"platform"
],
"author": "Jay.M.Hu",
"license": "MIT",
"bugs": {
"url": "https://github.com/hstarorg/ngx-modular-platform/issues"
},
"homepage": "https://github.com/hstarorg/ngx-modular-platform#readme",
"dependencies": {
"@angular/common": "6.0.7",
"@angular/compiler": "6.0.7",
"@angular/core": "6.0.7",
"@angular/forms": "6.0.7",
"@angular/http": "6.0.7",
"@angular/platform-browser": "6.0.7",
"@angular/platform-browser-dynamic": "6.0.7",
"@angular/router": "6.0.7",
"@angular/animations": "6.0.7",
"admin-lte": "2.4.2",
"bootstrap": "3.3.7",
"font-awesome": "^4.7.0",
"jquery": "3.2.1",
"reflect-metadata": "0.1.12",
"rxjs": "6.2.1",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/compiler-cli": "^6.0.7",
"@types/node": "^8.5.2",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "5.2.0",
"browser-sync": "2.24.5",
"connect-history-api-fallback": "1.5.0",
"css-loader": "1.0.0",
"extract-text-webpack-plugin": "3.0.2",
"gulp": "^4.0.0",
"gulp-concat": "2.6.1",
"gulp-util": "3.0.8",
"mini-css-extract-plugin": "^0.4.1",
"node-notifier": "5.2.1",
"nprogress": "^0.2.0",
"raw-loader": "0.5.1",
"rollup": "^0.62.0",
"rollup-plugin-angular-optimizer": "^0.2.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"shelljs": "0.8.2",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"tslint": "5.10.0",
"typescript": "2.7.2",
"webpack": "4.15.1",
"webpack-merge": "4.1.3"
},
"peerDependencies": {
"less": "^2.7.2",
"less-loader": "^2.2.3",
"node-sass": "^4.5.1",
"sass-loader": "^6.0.3"
}
}