-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.79 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": "images-social-server",
"version": "1.0.0",
"description": "Đề Cương Luận Văn BKU 2022",
"main": "index.js",
"type": "module",
"scripts": {
"prisma_gen": "prisma generate --schema=./src/prisma/schema.prisma",
"prisma_format": "prisma format --schema=./src/prisma/schema.prisma",
"prisma_db_push": "prisma db push --schema=./src/prisma/schema.prisma",
"dev": "nodemon src/index",
"start": "node src/index",
"start:dev": "node --watch src/index",
"start:prod": "node dist/index",
"build_temp": "rimraf dist & webpack --config webpack.config.js",
"build": "rimraf dist & babel ./src --ignore src/prisma_modules --out-dir dist",
"lint": "eslint --fix \"src/**\"",
"format": "prettier --write \"src/**\"",
"serverless": "sls offline start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HUNG-rushb/Images-Social-Server.git"
},
"author": "ĐH Bách Khoa TPHCM",
"license": "ISC",
"bugs": {
"url": "https://github.com/HUNG-rushb/Images-Social-Server/issues"
},
"homepage": "https://github.com/HUNG-rushb/Images-Social-Server#readme",
"dependencies": {
"@apollo/server": "^4.9.5",
"@as-integrations/aws-lambda": "^3.1.0",
"@babel/runtime": "^7.23.2",
"@graphql-tools/schema": "^9.0.19",
"@prisma/client": "^5.5.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"graphql": "^16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.14.2",
"http": "^0.0.1-security",
"jimp": "^0.22.10",
"leven": "^4.0.0",
"lodash": "^4.17.21",
"prisma": "^5.5.2",
"prisma-erd-generator": "^1.2.4",
"uuid": "^9.0.1",
"ws": "^8.14.2"
},
"resolutions": {
"graphql": "^16.8.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@types/jimp": "^0.2.28",
"@types/uuid": "^9.0.5",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"serverless-offline": "^8.8.1",
"webpack-cli": "^5.1.4"
}
}