-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "ong_api",
"version": "1.0.0",
"main": "server.ts",
"license": "MIT",
"engines": {
"node": "14.x"
},
"scripts": {
"build": "tsc",
"predev": "npm run typeorm migration:run",
"dev": "ts-node-dev --inspect --ignore-watch node_modules src/server.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"migration:gen": "npm run typeorm migration:generate -- -n",
"start": "node dist/server.js",
"start:debug": "ts-node-dev src/server.ts",
"start:docker:dev": "npm install && npm run dev",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"ts-node-dev": "^1.1.6",
"typeorm": "^0.2.33",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/redis": "^2.8.29",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
}
}