This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 2.05 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
{
"name": "dont-let-him-poo",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abhijit-kar/dont-let-him-poo"
},
"contributors": [
"Abhijit Kar"
],
"scripts": {
"ng": "Node ./node_modules/@angular/cli/bin/ng",
"lint": "ng lint",
"serve": "ng serve",
"build:client": "ng build --prod --aot",
"build:server": "ng build --prod --aot --app 1 --output-hashing=false",
"build:webpack": "webpack --config webpack.server.config.js --progress --colors",
"build:universal": "npm run build:client && npm run build:server && npm run build:webpack",
"serve:universal": "npm start --prefix ./public/",
"deploy:dev": "ng build --prod --aot --base-href https://www.abhijit-kar.com/dont-let-him-poo/ && ngh --dir=public/dist/browser/",
"deploy:prod": "npm run build:universal && ngh --dir=public/ --branch=prod"
},
"dependencies": {
"@angular/animations": "^5.2.7",
"@angular/common": "^5.2.7",
"@angular/compiler": "^5.2.7",
"@angular/core": "^5.2.7",
"@angular/forms": "^5.2.7",
"@angular/http": "^5.2.7",
"@angular/platform-browser": "^5.2.7",
"@angular/platform-browser-dynamic": "^5.2.7",
"@angular/platform-server": "^5.2.7",
"@angular/router": "^5.2.7",
"@angular/service-worker": "^5.2.7",
"@nguniversal/express-engine": "^5.0.0-beta.6",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.6",
"compression": "^1.7.2",
"core-js": "^2.5.3",
"express": "^4.16.2",
"global": "^4.3.2",
"gsap": "^1.20.4",
"heap": "^0.2.6",
"lodash": "^4.17.5",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.6",
"ts-loader": "^4.0.0",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@angular/cli": "^1.7.2",
"@angular/compiler-cli": "^5.2.7",
"@angular/language-service": "^5.2.7",
"@types/google.analytics": "0.0.38",
"@types/lodash": "^4.14.104",
"@types/node": "~9.4.6",
"codelyzer": "~4.1.0",
"ts-node": "~5.0.0",
"tslint": "~5.9.1",
"typescript": "^2.7.2"
}
}