-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "twitter-clone-backend",
"version": "1.0.0",
"description": "The architecture for nodejs backend application. It is build on top of expressjs using typescript.",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"upgrade": "npm update --save-dev && npm update --save",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/pallavi-shekhar/twitter-clone-backend.git"
},
"author": "Pallavi",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.10.11",
"supertest": "^6.2.3",
"jest": "^28.1.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/hapi__joi": "^17.1.6",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.163",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"colors": "^1.4.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"helmet": "^5.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"supertest": "^6.2.3",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}