-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "coworking-server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build:dev": "tsc -w",
"build": "tsc",
"start:dev": "nodemon dist/app.js",
"start": "node dist/app.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,json}'",
"isready": "npm run format && npm run lint && npm run build",
"test": "jest"
},
"author": "Daniel Ivanov",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.3",
"@types/node": "^16.4.13",
"@types/pino": "^6.3.11",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5"
},
"dependencies": {
"@types/rewire": "^2.5.28",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"pino": "^6.13.0",
"pino-pretty": "^5.1.3",
"rewire": "^5.0.0",
"ts-mixer": "^6.0.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}