-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.12 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "tutor-match",
"version": "0.0.1",
"description": "A web app for matching up tutors with students who wish to be tutored",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "make build",
"start": "make start",
"watch": "make start-watch"
},
"repository": {
"type": "git",
"url": "https+git://github.com/amikhalev/tutor-match.git"
},
"author": "Alex Mikhalev <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/moment-timezone": "^0.5.2",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-mysql-session": "^1.2.3",
"express-session": "^1.15.6",
"fs-extra": "^5.0.0",
"lodash": "^4.17.4",
"moment": "^2.19.4",
"moment-timezone": "^0.5.14",
"mysql": "^2.15.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"pug": "^2.0.0-rc.4",
"reflect-metadata": "^0.1.10",
"typeorm": "^0.1.8"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.0.37",
"@types/express-session": "^1.15.6",
"@types/jquery": "^3.2.16",
"@types/lodash": "^4.14.88",
"@types/node": "^8.0.58",
"@types/passport": "^0.4.1",
"@types/systemjs": "^0.20.6",
"jspm": "^0.17.0-beta.47",
"nodemon": "^1.12.5",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"jspm": {
"configFiles": {
"jspm": "./jspm.config.js"
},
"configFile": "./jspm.config.js",
"directories": {
"baseURL": "static",
"packages": "static/jspm"
},
"dependencies": {
"eonasdan-bootstrap-datetimepicker": "npm:eonasdan-bootstrap-datetimepicker@^4.17.47",
"font-awesome": "npm:font-awesome@^4.7.0"
},
"devDependencies": {
"css": "github:systemjs/plugin-css@^0.1.36"
},
"peerDependencies": {
"bootstrap": "npm:bootstrap@^4.0.0-beta.2",
"jquery": "npm:jquery@^3.0.0",
"moment": "npm:moment@^2.19.2",
"moment-timezone": "npm:moment-timezone@^0.5.14",
"popper.js": "npm:popper.js@^1.12.3"
},
"overrides": {
"npm:[email protected]": {
"main": "dist/js/bootstrap",
"jspmNodeConversion": false,
"directories": {
"lib": "."
},
"dependencies": {
"jquery": "*",
"popper.js": "[email protected]@^1.12.6"
},
"meta": {
"dist/js/bootstrap.js": {
"deps": [
"jquery",
"popper.js"
],
"globals": {
"Popper": "popper.js"
},
"exports": "$",
"format": "global"
}
}
},
"npm:[email protected]": {
"main": "css/font-awesome.css!",
"jspmNodeConversion": false,
"registry": "jspm",
"dependencies": {
"css": "0.1"
}
},
"npm:[email protected]": {
"format": "amd"
},
"npm:[email protected]": {
"jspmNodeConversion": false
}
}
},
"now": {
"alias": "tutor-match"
}
}