-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "wall-calendar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"watch": "tsc && concurrently \"tsc -w\" \"nodemon dist/app.js\"",
"start": "tsc && node dist/app.js",
"build": "tsc"
},
"author": "Janar Nagel",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/hbs": "^4.0.1",
"@types/i18n": "^0.13.2",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"concurrently": "^7.1.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-socket-io": "^0.0.2",
"nodemon": "^2.0.16",
"ntlm-client": "^0.1.1",
"prettier": "2.6.2",
"typescript": "^4.6.4",
"url-safe-base64": "^1.2.0"
},
"dependencies": {
"@types/ntlm-client": "^0.1.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"hbs": "^4.2.0",
"i18n": "^0.14.2",
"node-ews": "^3.5.0",
"socket.io": "^4.5.0"
}
}