-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "carketplace",
"version": "1.1.0",
"description": "used vehicle website",
"scripts": {
"dev": "nodemon public/server.ts",
"test": "npx jest --detectOpenHandles --forceExit",
"build": "npx tsc", "gcp-build": "npm run build",
"start": "node out/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttamre/carketplace.git"
},
"author": "Tem Tamre",
"license": "GNU",
"bugs": {
"url": "https://github.com/ttamre/carketplace/issues"
},
"homepage": "https://www.carketplace.ca",
"dependencies": {
"better-sqlite3": "^9.6.0",
"body-parser": "^1.20.2",
"ejs": "^3.1.9",
"express": "^4.18.3",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "~7.6.10",
"@types/body-parser": "~1.19.5",
"@types/ejs": "~3.1.5",
"@types/express": "~4.17.21",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}