-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "ravenpaytest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon ./src/index.ts",
"start": "node ./build/index.js",
"build": "tsc -p .",
"migrate": "knex --knexfile ./src/data/knexfile.ts migrate:latest",
"createDB": "node ./src/data/createDatabase.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udeaghad/RavenPayTest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/udeaghad/RavenPayTest/issues"
},
"homepage": "https://github.com/udeaghad/RavenPayTest#readme",
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.16.1",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"mysql": "^2.18.1",
"mysql2": "^3.2.4",
"qs": "^6.11.1"
}
}