-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
{
"name": "prioriti",
"version": "0.0.3",
"main": "index.js",
"repository": {},
"scripts": {
"_start": "npm run build && npm run server",
"_build": "webpack",
"build:aot": "webpack --env.aot --env.client & webpack --env.aot --env.server",
"build:prod": "webpack -p",
"prebuild": "npm run clean",
"prebuild:aot": "npm run clean",
"prebuild:prod": "npm run clean",
"clean": "rimraf dist",
"server": "nodemon dist/server.js",
"_server": "pm2 start dist/server.js --watch",
"start": "webpack --watch",
"client-only": "webpack --watch --env.client_only",
"server-only": "webpack --watch --env.server_only",
"test": "nodemon test/unit-ts.js",
"test-two": "tsc -w test/unit-ts.ts",
"_test": "ts-node test/_test.ts"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "4.0.1",
"@angular/common": "4.0.1",
"@angular/compiler": "4.0.1",
"@angular/compiler-cli": "4.0.1",
"@angular/core": "4.0.1",
"@angular/forms": "4.0.1",
"@angular/http": "4.0.1",
"@angular/material": "^2.0.0-beta.3",
"@angular/platform-browser": "4.0.1",
"@angular/platform-browser-dynamic": "4.0.1",
"@angular/platform-server": "4.0.1",
"@angular/router": "4.0.1",
"angular2-modal": "^2.0.3",
"angular2-recaptcha": "^0.5.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.4.1",
"express": "^4.15.2",
"gulp": "^3.9.1",
"gulp-replace-task": "^0.11.0",
"ie-shim": "^0.1.0",
"install": "^0.10.2",
"intl": "^1.2.5",
"mydatepicker": "^1.7.15",
"ng-yandex-metrika": "^0.4.1",
"ng2-bootstrap": "^1.6.3",
"ng2-file-upload": "^1.2.1",
"ng2-toastr": "^4.0.1",
"ngx-barcode": "^0.2.4",
"ngx-pagination": "^3.0.0",
"outdated-browser": "^1.0.2",
"run-sequence": "^1.2.2",
"rxjs": "^5.2.0",
"web-animations-js": "^2.2.3",
"xhr2": "^0.1.4",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@angular/compiler-cli": "^4.0.0",
"@ngtools/webpack": "^1.2.14",
"@techiediaries/ngx-qrcode": "0.0.5",
"@types/express": "^4.0.35",
"@types/node": "^7.0.8",
"autoprefixer": "^6.7.7",
"browser-sync": "^2.18.8",
"connect-history-api-fallback": "^1.3.0",
"gulp-clean-css": "^3.0.4",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^6.4.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"html-webpack-plugin": "^2.28.0",
"jw-bootstrap-switch-ng2": "^1.0.8",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"script-ext-html-webpack-plugin": "^1.7.1",
"typescript": "^2.2.1",
"webpack": "^2.2.1",
"webpack-merge": "^4.0.0",
"webpack-replace": "1.0.0"
}
}