-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.89 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
80
81
82
83
84
{
"name": "reft_backend",
"version": "1.1.0",
"description": "rent-backend",
"main": "index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "npx tsc",
"watch": "tsc-watch --esModuleInterop src/index.ts --outDir ./build --onSuccess \"node ./build/index.js\"",
"prettier": "prettier --config .prettierrc.json src/**/*.ts --write",
"lint": "eslint . --fix --ext .ts",
"start": "nodemon src/index.ts",
"jasmine": "jasmine",
"resetdb": "db-migrate reset && db-migrate up",
"test1": "npm run resetdb && npm run build && npm run jasmine",
"test2": "setx var NODE_ENV=test && npx tsc && db-migrate --env test up && jasmine && db-migrate db:drop test"
},
"author": "osman",
"license": "ISC",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.3",
"@types/cors": "^2.8.13",
"@types/mailgen": "^2.0.5",
"aggregate-error": "^5.0.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"express": "^4.18.2",
"express-form-data": "^2.0.22",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"mailgen": "^2.0.27",
"mime": "^3.0.0",
"multer": "^1.4.4-lts.1",
"nodemailer": "^6.9.4",
"pdf-lib": "^1.17.1",
"pg": "^8.11.5",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"stripe": "^16.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.5",
"@types/crypto-js": "^4.2.2",
"@types/db-migrate-pg": "^0.0.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-form-data": "^2.0.2",
"@types/jasmine": "^3.6.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/node": "^20.11.24",
"@types/nodemailer": "^6.4.9",
"@types/paypal__checkout-server-sdk": "^1.0.8",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.11",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cross-env": "^7.0.3",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-node": "^10.9.1",
"tsc-watch": "^4.2.9",
"typescript": "^5.3.3"
}
}