-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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
{
"name": "artistica-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "NODE_ENV=development ts-node-dev -r tsconfig-paths/register --watch --transpile-only src/index.ts",
"dev-windows": "set NODE_ENV=development && ts-node-dev -r tsconfig-paths/register --watch --transpile-only src/index.ts",
"seed:initial": "ts-node -r tsconfig-paths/register ./node_modules/typeorm-extension/bin/cli.cjs seed:run -d ./src/data-source.ts",
"build": "rm -rf dist && tsc --build tsconfig.json",
"build-windows": "rmdir /s /q dist && tsc --build tsconfig.json",
"staging": "NODE_ENV=staging node -r tsconfig-paths/register ./dist/index.js",
"staging-windows": "set NODE_ENV=staging && node -r tsconfig-paths/register ./dist/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/nodemailer": "^6.4.13",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.41",
"@typescript-eslint/parser": "^8.0.0-alpha.41",
"eslint": "^9.6.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"@ejekanshjain/type-graphql-dataloader": "^0.5.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/koa": "^2.15.0",
"@types/lodash": "^4.14.202",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.3.1",
"env-var": "^7.4.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"googleapis": "^126.0.1",
"graphql": "^16.8.0",
"graphql-scalars": "^1.23.0",
"graphql-upload-ts": "^2.1.2",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"locter": "^2.1.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"nodemailer": "^6.9.6",
"path": "^0.12.7",
"rajaongkir-nodejs": "^0.2.0",
"socket.io": "^4.7.4",
"type-graphql": "2.0.0-rc.2",
"typeorm": "^0.3.17",
"typeorm-extension": "^3.5.1"
}
}