-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
61
62
63
64
65
66
{
"name": "pulpe-admin-backend",
"version": "1.0.0",
"description": "typescript project",
"main": "./build/index.js",
"private": true,
"engines": {
"npm": ">=8.15.0",
"node": ">=16.17.0"
},
"scripts": {
"start": "node ./build/index.js",
"dev": "npx ts-node ./source/index.ts",
"build": "npx tsc",
"test": "npx jest",
"typeorm": "typeorm-ts-node-esm",
"migration:run": "typeorm-ts-node-esm migration:run --dataSource ./source/db/connection.ts",
"migration:revert": "typeorm-ts-node-esm migration:revert --dataSource ./source/db/connection.ts",
"migration:show": "typeorm-ts-node-esm migration:show --dataSource ./source/db/connection.ts",
"migration:generate": "typeorm-ts-node-esm migration:generate ./source/db/migrations/ --dataSource ./source/db/connection.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axelsomerseth/pulpe-admin-backend.git"
},
"keywords": [
"typescript",
"express",
"backend",
"jest"
],
"author": "Axel Somerseth Cordova <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/axelsomerseth/pulpe-admin-backend/issues"
},
"homepage": "https://github.com/axelsomerseth/pulpe-admin-backend#readme",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6",
"jest": "^29.0.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"helmet": "^6.0.0",
"joi": "^17.6.3",
"mailgun.js": "^8.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10"
}
}