-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "resell-server",
"version": "1.0.0",
"description": "An open-sourced backend service for Resell.",
"main": "src/app.ts",
"scripts": {
"dev": "tsc-watch --onSuccess \"ts-node src/app.ts\"",
"start": "ts-node src/app.ts",
"test": "jest",
"db:migrate:create": "ts-node ./node_modules/typeorm/cli.js migration:create -n",
"db:migrate:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -n",
"db:migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
"db:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"db:seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuappdev/resell-backend.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/cuappdev/resell-backend/issues"
},
"homepage": "https://github.com/cuappdev/resell-backend#readme",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.5",
"@types/jest": "^27.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^16.9.0",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.2.4",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-mockito": "^2.6.1",
"tsc-watch": "^4.5.0",
"typeorm-seeding": "^1.6.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^4.2.0",
"@tensorflow/tfjs-node": "^4.3.0",
"body-parser": "^1.19.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"expo-server-sdk": "^3.7.0",
"express": "^4.17.2",
"faker": "^5.5.3",
"google-auth-library": "^7.14.0",
"math.js": "^1.1.46",
"multer": "1.4.5-lts.1",
"node-fetch": "^2.6.1",
"pg": "^8.7.1",
"pug": "^3.0.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "0.10.2",
"string-similarity": "^4.0.4",
"ts-node": "^10.5.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.45",
"typeorm-naming-strategies": "^4.1.0",
"typeorm-typedi-extensions": "^0.4.1",
"xml2js": "^0.5.0"
}
}