-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 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
74
{
"name": "project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist && npm run copy",
"clean": "rimraf ./dist",
"copy": "copyfiles -u 1 ./src/**/*.html ./dist",
"start": "ts-node -r dotenv/config ./src/server.ts",
"start:dev": "nodemon --config nodemon.json",
"seed": "ts-node -r dotenv/config ./seed/server.ts",
"orm:seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.13",
"@types/faker": "5.5.9",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.183",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"copyfiles": "^2.4.1",
"dotenv": "^14.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"forever": "^4.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tscpaths": "^0.0.9",
"typescript": "^4.7.4"
},
"dependencies": {
"apollo-server-express": "^3.6.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"class-validator": "^0.13.2",
"cloud-config-client": "^1.6.2",
"commander": "^8.3.0",
"cron": "^2.1.0",
"express": "^4.17.2",
"faker": "5.5.3",
"graphql": "^15.3.0",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.4.3",
"inversify-inject-decorators": "^3.1.0",
"inversify-logger-middleware": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.2",
"npm": "^8.17.0",
"pg": "^8.7.1",
"redis": "^4.2.0",
"redis-om": "^0.3.6",
"reflect-metadata": "^0.1.13",
"swagger-express-ts": "^1.1.0",
"swagger-ui-dist": "^4.2.1",
"tsconfig-paths": "^3.12.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.41",
"typeorm-seeding": "^1.6.1",
"uuid": "^8.3.2"
}
}