-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
{
"name": "billion",
"version": "1.0.0",
"description": "Empowering Businesses with Seamless Billing Solutions",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "ts-node src/index.ts",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"seed": "ts-node src/utils/seed.ts",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tanmay000009/BILLsolutION.git"
},
"author": "@Tanmay000009",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tanmay000009/BILLsolutION/issues"
},
"homepage": "https://github.com/Tanmay000009/BILLsolutION#readme",
"dependencies": {
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase": "^10.3.0",
"firebase-admin": "^11.10.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-jest": "^29.6.3",
"husky": "^8.0.3",
"jest": "^29.6.3",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"prettier": "3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=20.3.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}