-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dankstocks",
"version": "0.0.0",
"description": "Dankstock news and articles - best publishing platform",
"author": "",
"license": "ISC",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/app.js",
"dev": "concurrently \"tsc -w\" \"cross-env NODE_ENV=development nodemon\"",
"build": "tsc",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@types/socket.io": "^2.1.13",
"@types/stripe": "^8.0.417",
"aws-sdk": "^2.912.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"helmet": "^4.3.1",
"hpp": "^0.2.3",
"http": "^0.0.1-security",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-cron": "^3.0.0",
"socket.io": "^3.1.2",
"stripe": "^8.143.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"underscore": "^1.13.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.1",
"@types/jest": "^26.0.19",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.1",
"@types/morgan": "^1.9.2",
"@types/node": "^15.3.0",
"@types/supertest": "^2.0.10",
"@types/underscore": "^1.11.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"node-gyp": "^7.1.2",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.0.1"
}
}