-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.36 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.36 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "petsmart",
"version": "0.0.1",
"description": "",
"main": "server/index.js",
"scripts": {
"component": "gulp component",
"test": "karma start",
"start": "node server/index.js",
"app": "npm run server | npm run client",
"server": "nodemon server",
"client": "node client.config.js | webpack-dev-server --hot --inline --host 0.0.0.0",
"postinstall": "node client.config.js | webpack",
"heroku-postbuild": "node client.config.js | webpack"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "git@github.com:linx05/petsmart.git"
},
"dependencies": {
"angular": "1.5.9",
"angular-animate": "1.5.9",
"angular-aria": "1.5.9",
"angular-cookies": "1.5.9",
"angular-jwt": "^0.1.8",
"angular-sanitize": "1.5.9",
"angular-socket-io": "^0.7.0",
"angular-storage": "^0.0.15",
"angular-translate": "^2.13.0",
"angular-translate-loader-static-files": "^2.13.0",
"angular-translate-storage-cookie": "^2.13.0",
"angular-translate-storage-local": "^2.13.0",
"angular-ui-router": "1.0.0-beta.3",
"angular-utils-pagination": "^0.11.1",
"api-query-params": "^4.3.0",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"connect": "^3.5.0",
"connect-roles": "^3.1.2",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"jquery": "^3.1.1",
"jwt-simple": "^0.5.0",
"lodash": "^4.17.1",
"method-override": "^2.3.6",
"mongoose": "^4.9.2",
"mongoose-deep-populate": "^3.0.0",
"mongoose-delete": "^0.3.4",
"mongoose-id-validator": "^0.4.0",
"mongoose-sequence": "^3.2.0",
"mongoose-unique-validator": "^1.0.2",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"mz": "^2.6.0",
"nodemailer": "^2.6.4",
"nodemailer-mailgun-transport": "^1.2.2",
"normalize.css": "^3.0.3",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"semantic-ui-angular-jquery": "^0.2.1",
"semantic-ui-css": "^2.2.10",
"socket.io": "^1.5.1",
"socketio-jwt": "^4.5.0",
"use-strict": "^1.0.1",
"uuid": "^3.0.1",
"v-accordion": "^1.6.0"
},
"devDependencies": {
"angular-mocks": "^1.5.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.3",
"browser-sync": "^2.11.1",
"chai": "^3.4.0",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.28.0",
"del": "^2.2.0",
"file-loader": "^0.11.1",
"fs-walk": "0.0.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^3.0.0",
"gulp-util": "^3.0.7",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.1",
"mocha": "^2.3.0",
"ng-annotate-loader": "^0.2.0",
"node-libs-browser": "^0.5.0",
"node-sass": "^3.13.1",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.16.1",
"supports-color": "^3.2.3",
"svg-sprite-loader": "^2.1.0",
"url-loader": "^0.5.7",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.1"
}
}