-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.72 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "flexible-finance-server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "npm run api; tsc",
"start": "npm run api; node ./build/src/index.js",
"dev": "nodemon -w src -e ts,json -x ts-node ./src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky",
"api": "npx swagger-cli bundle -t yaml -o build/openapi.yml src/openapi.root.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b2079/flexible-finance-server.git"
},
"author": "Mike Warburton",
"license": "ISC",
"bugs": {
"url": "https://github.com/b2079/flexible-finance-server/issues"
},
"homepage": "https://github.com/b2079/flexible-finance-server#readme",
"dependencies": {
"@apidevtools/swagger-cli": "4.0.4",
"@dinero.js/currencies": "^2.0.0-alpha.14",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/got": "9.6.12",
"@types/hpp": "^0.2.6",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.4",
"@types/pg": "^8.11.4",
"@types/sequelize": "^4.28.20",
"@types/swagger-ui-express": "^4.1.6",
"@types/tape": "^5.6.4",
"@types/toobusy-js": "^0.5.4",
"@types/umzug": "^2.3.7",
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"cors": "2.8.5",
"dinero.js": "^2.0.0-alpha.14",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-openapi-validator": "^5.1.6",
"got": "^14.2.1",
"helmet": "^7.1.0",
"hpp": "0.2.3",
"js-yaml": "4.1.0",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.0",
"pg": "^8.11.5",
"sequelize": "^6.37.2",
"swagger-ui-express": "^4.6.3",
"tape": "^5.7.5",
"toobusy-js": "0.5.1",
"umzug": "^3.8.0",
"yaml": "^2.4.5"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.4",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-with-typescript": "35.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "^5.4.4"
},
"override": {
"moment": "2.29.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}