-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 3.32 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
{
"name": "ultimate-comparison",
"version": "2.0.0-alpha.32",
"scripts": {
"start": "npm run gulp:compile && npm run webpack:start",
"webpack:start": "webpack-dev-server --config lib/webpack/webpack.common.js --content-base dist --open --inline --progress --port 3000",
"webpack:build": "webpack --config lib/webpack/webpack.prod.js --progress --profile --bail",
"gulp:compile": "node ./node_modules/gulp/bin/gulp.js default --gulpfile=./lib/gulp/gulpfile.js",
"gulp:development": "node ./node_modules/gulp/bin/gulp.js dev --gulpfile=./lib/gulp/gulpfile.js",
"dev": "concurrently \"npm run gulp:development\" \"npm run webpack:start\" ",
"build": "npm run gulp:compile && npm run webpack:build",
"release": "node ./lib/gulp/publish.js"
},
"files": [
"dist",
"configuration",
"data",
"LICENSE",
"bin",
"lib"
],
"bin": {
"uc": "./lib/uc/uc"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ultimate-comparisons/ultimate-comparison-BASE.git"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"angular-http-server": "^1.9.0",
"citation-js": "^0.3.4",
"gulp": "^4.0.2",
"gulp-exec": "^3.0.2",
"gulp-rename": "^1.4.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"showdown": "^1.9.1",
"tslint": "^5.20.1",
"typescript": "2.6.2"
},
"devDependencies": {
"@angular/cli": "^1.7.4",
"@angular/common": "^5.2.11",
"@angular/compiler": "^5.2.11",
"@angular/compiler-cli": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/forms": "^5.2.11",
"@angular/http": "^5.2.11",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "^5.2.11",
"@angular/router": "^5.2.11",
"@ngrx/router-store": "^5.2.0",
"@ngrx/store": "^5.2.0",
"@ngtools/webpack": "^1.10.2",
"@types/anchor-js": "^4.2.0",
"@types/angular": "^1.6.57",
"@types/node": "^9.6.55",
"@types/showdown": "^1.9.3",
"anchor-js": "^4.2.2",
"angular2-template-loader": "^0.6.2",
"autoprefixer": "^8.6.5",
"awesome-typescript-loader": "^3.5.0",
"clean-webpack-plugin": "^0.1.19",
"codelyzer": "^4.5.0",
"concurrently": "^3.6.1",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^2.6.11",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-saver": "^1.3.8",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"js-yaml": "^3.13.1",
"ng2-select": "^2.0.0",
"postcss-import": "^11.1.0",
"postcss-url": "^7.3.2",
"raw-loader": "^0.5.1",
"rxjs": "^5.5.12",
"style": "0.0.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5",
"webpack-merge": "^4.2.2",
"zone.js": "^0.8.29"
}
}