-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
60
61
62
63
64
65
66
67
{
"name": "thinkly-api",
"version": "1.0.0",
"description": "an api for thinly - a blog mobile app",
"main": "build/server.js",
"scripts": {
"dev:build": "tsc -w",
"dev:run": "nodemon build/server.js",
"dev": "concurrently npm:dev:*",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watchAll",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc",
"start": "node build/server.js",
"postinstall": "npm run build"
},
"author": "AmosSpark",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.29.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"envalid": "^7.2.2",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.2.1",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"streamifier": "^0.1.1",
"typescript": "^4.5.4",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"_moduleAliases": {
"@/resources": "build/resources",
"@/utils": "build/utils",
"@/middleware": "build/middleware"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose-unique-validator": "^1.0.6",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/streamifier": "^0.1.0",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.1",
"jest": "^28.1.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0"
},
"engines": {
"node": "16.0.0",
"npm": "7.10.0"
}
}