This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "epi.today",
"version": "1.0.0",
"description": "what's on the calendar today at epitech?",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"start": "node build/app.js",
"dev": "nodemon src/app.ts",
"debug": "nodemon --inspect src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x4m3/epi.today.git"
},
"author": "Philippe Loctaux <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cookie-session": "^2.0.37",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.14",
"@types/passport": "^1.0.2",
"@types/pug": "^2.0.4",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.45",
"nodemon": "^2.0.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"passport": "^0.4.1",
"passport-azure-ad-oauth2": "0.0.4",
"pug": "^3.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.5"
},
"nodemonConfig": {
"restartable": "rs",
"verbose": "true",
"execMap": {
"ts": "node --require ts-node/register"
},
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/",
".env"
],
"ext": "ts,js,json"
}
}