-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.37 KB
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": "ToDoList",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --runInBand --detectOpenHandles",
"build": "babel src --extensions \".js,.ts\" --out-dir build --copy-files",
"start": "node build/server.js",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.13",
"@types/joi": "^17.2.3",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.1",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"data-fns": "^0.1.8",
"date-fns": "^2.29.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.7",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.1",
"swagger-ui-express": "^4.4.0",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.45",
"typeorm-pagination": "^2.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/jest": "^26.0.21",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"ts-jest": "^26.5.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}