-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 KB
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
{
"name": "node-assignment",
"version": "1.0.0",
"description": "**Edit a file, create a new file, and clone from Bitbucket in under 2 minutes**",
"main": "index.js",
"scripts": {
"compile": "tsc && node ./dist/server.js",
"start": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run compile\"",
"test": "jest --runInBand --forceExit",
"build": "tsc",
"pm2": "pm2 start dist/server.js --name node-assignment --interpreter node --merge-logs --log-date-format 'YYYY-MM-DD HH:mm:ss ZZ'",
"monit": "pm2 monit",
"list": "pm2 list all",
"log": "pm2 log",
"delete": "pm2 delete all",
"restart": "pm2 restart all",
"stop": "pm2 stop all"
},
"repository": {
"type": "git",
"url": "git+https://ArjanAswal@bitbucket.org/arjanaswal/node-assignment.git"
},
"author": "Arjan Aswal",
"license": "ISC",
"bugs": {
"url": "https://bitbucket.org/arjanaswal/node-assignment/issues"
},
"homepage": "https://bitbucket.org/arjanaswal/node-assignment#readme",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^6.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.5.0",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"jest": "^28.0.3",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.4.0",
"helmet": "^5.0.2",
"pg": "^8.7.3",
"pm2": "^5.2.0",
"supertest": "^6.2.3",
"uuid": "^8.3.2",
"winston": "^3.7.2",
"xss": "^1.0.11"
}
}