-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "social-backend",
"version": "1.0.0",
"main": "src/server.ts",
"description": "A social network backend web application",
"author": "Leonardo Oliveira <leonfoliveira@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development tsnd --no-notify --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"test": "NODE_ENV=test knex migrate:rollback && NODE_ENV=test jest --runInBand --silent",
"build": "tsc",
"start": "node dist/src/server.js",
"migrate": "knex migrate:latest"
},
"dependencies": {
"bcrypt": "^5.0.0",
"celebrate": "^12.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"helmet": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.2",
"multer": "^1.4.2",
"pg": "^8.3.0",
"uuidv4": "^6.2.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.0.0",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.1",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
}
}