-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "forum-api",
"version": "1.0.0",
"description": "A Forum REST API made with Express & Typescript.",
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"forum",
"rest",
"api",
"typescript",
"node",
"express",
"typeorm"
],
"author": "Daniel Marquez",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.10",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"ts-node": "^9.1.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
}
}