-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.06 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
{
"name": "ecom-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/main.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/main.ts",
"lint": "eslint 'src/**/*.{js,ts}' --quiet --fix",
"gen": " npx ts-node ./node_modules/.bin/typeorm migration:generate -n UserRefactoring",
"create": "typeorm migration:create -n ItemRefactoring -d 'src/migrations'",
"drop-schema": "typeorm schema:drop"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/ioredis": "^4.17.11",
"@types/node": "^14.14.20",
"apollo-server": "^2.19.1",
"apollo-server-express": "^2.19.1",
"babel-plugin-inline-dotenv": "^1.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"eslint-plugin-unused-imports": "^1.1.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.4.0",
"helmet": "^4.1.1",
"ioredis": "^4.19.4",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.5.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.29",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/nodemailer": "^6.4.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
}
}