-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
{
"name": "SuasPlantasBackend",
"version": "0.0.1",
"license": "UNLICENSED",
"description": "Awesome project",
"scripts": {
"gen-env": "gen-env-types .env -o src/env.d.ts -e .",
"build": "tsc",
"watch": "tsc -w",
"dev": "ts-node-dev src/index.ts",
"dev2": "nodemon dist/src/index.js",
"start": "node dist/src/index.js",
"test-once": "jest",
"test": "jest --watch --detectOpenHandles"
},
"dependencies": {
"@decorators/express": "^2.6.0",
"@googleapis/customsearch": "^0.2.0",
"aws-sdk": "^2.1007.0",
"axios": "^0.23.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"force-ssl-heroku": "^1.0.2",
"geojson": "^0.5.0",
"google-auth-library": "^7.10.0",
"googleapis": "^95.0.0",
"jsonwebtoken": "^8.5.1",
"onesignal-node": "^3.3.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.9",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"supertest": "^6.2.2",
"ts-node-dev": "^1.1.8",
"typeorm": "^0.2.41",
"typeorm-naming-strategies": "^2.0.0",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/geojson": "^7946.0.8",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^17.0.8",
"@types/qs": "^6.9.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.0.5",
"jest": "^27.5.0",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.5",
"ts-node": "10.3.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
}
}