-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "@thetribe/megahertz-backend",
"version": "0.9.0",
"description": "Support project for software architecture course",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint src --ext ts,tsx",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"author": "Harold Cohen <[email protected]>",
"license": "AFPL",
"dependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@tsconfig/node20": "^20.1.2",
"@types/express": "^4.17.18",
"@types/lodash": "^4.14.198",
"@types/ramda": "^0.29.4",
"@types/uuid": "^9.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"date-fns": "^2.30.0",
"deep-clone": "^4.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"pg": "^8.11.3",
"ramda": "^0.29.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsyringe": "^4.8.0",
"typeorm": "^0.3.17",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.1.0",
"@jorgebodega/typeorm-factory": "^1.4.0",
"@thetribe/eslint-config-typescript": "^0.5.1",
"@types/jest": "^29.5.5",
"@types/supertest": "^2.0.13",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"babel-jest": "^29.7.0",
"babel-preset-jest": "^29.6.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-date-mock": "^1.0.8",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}