forked from bullhorn/career-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.76 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
{
"name": "career-portal",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "node dist/server",
"serve": "ng serve --configuration=static",
"build": "npm run build:ssr",
"build:static": "ng build --prod --configuration=static --aot --build-optimizer",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"compile:server": "webpack --config webpack.server.config.js --progress --colors",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"build:client-and-server-bundles": "ng build --prod --configuration=dynamic && ng run career-portal:server:dynamic"
},
"private": true,
"engines": {
"node": "10.3.0"
},
"dependencies": {
"@angular/animations": "^7.1.2",
"@angular/cdk": "^7.1.1",
"@angular/common": "^7.1.2",
"@angular/compiler": "^7.1.2",
"@angular/core": "^7.1.2",
"@angular/forms": "^7.1.2",
"@angular/http": "^7.1.2",
"@angular/platform-browser": "^7.1.2",
"@angular/platform-browser-dynamic": "^7.1.2",
"@angular/platform-server": "^7.1.2",
"@angular/router": "^7.1.2",
"@bullhorn/bullhorn-icons": "2.3.0",
"@bullhorn/bullhorn-types": "^1.9.0",
"@bullhorn/dragula": "1.0.1",
"@nguniversal/express-engine": "^7.1.1",
"@nguniversal/module-map-ngfactory-loader": "0.0.0",
"ace-builds": "1.3.1",
"angular2-text-mask": "^9.0.0",
"angular2-universal": "^2.1.0-rc.1",
"body-parser": "^1.18.2",
"brace": "^0.11.1",
"bullhorn-icons": "^1.17.0",
"chomsky": "^3.3.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.4.1",
"date-fns": "^1.30.1",
"express": "^4.16.2",
"he": "^1.2.0",
"jsontoxml": "^1.0.1",
"ngx-clipboard": "^10.0.0",
"novo-elements": "3.14.0",
"post-robot": "^8.0.29",
"preboot": "^6.0.0-beta.2",
"roboto-fontface": "^0.9.0",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.0.0-rc.0",
"string-replace-webpack-plugin": "^0.1.3",
"text-mask-addons": "^3.8.0",
"xmlhttprequest": "^1.8.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.11.4",
"@angular/cli": "^7.1.2",
"@angular/compiler-cli": "^7.1.2",
"@angular/language-service": "^7.1.2",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-loader": "^5.2.0",
"ts-node": "~4.1.0",
"tslint": "^5.11.0",
"typescript": "~3.1.6",
"webpack-cli": "^3.1.0"
}
}