-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "express-server3",
"version": "1.0.0",
"description": "Another Nodejs application",
"main": "app.js",
"scripts": {
"prestart": "npm run build",
"start": "node .",
"dev": "nodemon src/app.ts",
"lint": "eslint src/**/*.{ts,json}",
"lint:fix": "eslint src/**/*.{ts,json} --fix",
"prettier": "prettier --write src/**/*.{ts,json}",
"build": "npx tsc",
"db:up": "npx db-migrate up",
"db:down": "npx db-migrate reset",
"pretest": "npm run lint:fix && npm run build",
"test": "jasmine"
},
"keywords": [
"nodejs",
"typescript"
],
"author": "Mahmoud Kassem",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.0",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.8.0"
}
}