-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1016 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1016 Bytes
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
{
"name": "chatre",
"version": "1.0.0",
"description": "A chat app",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"test": "npm run build && jest",
"build": "tsc",
"build:production": "node -e \"require('fs-extra').emptyDir('dist');\" && tsc",
"dev": "tsc && nodemon -q"
},
"keywords": [
"chat",
"web",
"firebase"
],
"author": "Sam Girshovich <sam.girshovich@gmail.com>",
"license": "MIT",
"repository": "samg11/chatre",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"morgan": "^1.10.0",
"typescript": "^4.2.3"
}
}