-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
{
"name": "eat-fresh",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "node dist/server/server.js",
"build": "ng build",
"copy": "cpx \"server/data/*.json\" \"dist/server/data\"",
"predev": "tsc -p server",
"dev": "concurrently \"ng serve -pc proxy.conf.json --open\" \"tsc -w -p server\" \"npm run copy\" \"nodemon -max-old-space-size=2048 dist/server/server.js\"",
"prod": "concurrently \"ng build -aot -prod && tsc -p server && node -max-old-space-size=4096 dist/server/server.js\"",
"lint": "tslint \"src/**/*.ts\"",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"build.prod": "ng build --aot --prod --progress false --base-href \"https://mirdesai81.github.io/groceries/\"",
"update:packages": "npm update --save && npm update --save-dev"
},
"private": true,
"dependencies": {
"@angular/animations": "*",
"@angular/cli": "*",
"@angular/common": "*",
"@angular/compiler": "*",
"@angular/compiler-cli": "*",
"@angular/core": "*",
"@angular/forms": "*",
"@angular/http": "*",
"@angular/platform-browser": "*",
"@angular/platform-browser-dynamic": "*",
"@angular/platform-server": "*",
"@angular/router": "*",
"@types/multiparty": "*",
"@types/node": "^8.0.33",
"@types/q": "*",
"angular-froala-wysiwyg": "*",
"angular2-jwt": "*",
"angular2-notifications": "*",
"bcryptjs": "*",
"body-parser": "*",
"bootstrap": "^4.0.0-beta",
"core-js": "*",
"cors": "*",
"cpx": "*",
"dotenv": "*",
"express": "*",
"express-jwt": "*",
"font-awesome": "*",
"gridfs-stream": "*",
"hamburgers": "*",
"jquery": "*",
"jsonfile": "*",
"jsonwebtoken": "*",
"lodash": "*",
"mdbootstrap": "*",
"mongoose": "*",
"mongoose-sequence": "*",
"mongoose-url-slugs": "*",
"morgan": "*",
"multer": "*",
"multer-gridfs-storage": "*",
"multiparty": "*",
"ng2-file-upload": "*",
"ngx-color-picker": "*",
"node-waves": "*",
"popper.js": "*",
"q": "^2.0.3",
"rxjs": "*",
"sharp": "*",
"tether": "*",
"ts-helpers": "*",
"typescript": "*",
"zone.js": "*"
},
"devDependencies": {
"@types/jasmine": "*",
"@types/node": "*",
"codelyzer": "*",
"concurrently": "*",
"jasmine-core": "*",
"jasmine-spec-reporter": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-cli": "*",
"karma-jasmine": "*",
"karma-remap-istanbul": "*",
"nodemon": "*",
"protractor": "*",
"ts-node": "*",
"tslint": "*"
}
}