-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 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
76
77
78
79
80
{
"name": "idol-api",
"version": "0.9.4",
"main": "server.js",
"scripts": {
"dev": "nodemon",
"build:clean": "rimraf build",
"build:babel": "babel source -d build",
"build": "npm-run-all -s build:clean build:babel",
"start": "cross-env NODE_ENV=production node build/server.js",
"prettier:fix": "prettier --write",
"lint:fix": "eslint --fix",
"prettier": "prettier -c",
"lint": "eslint"
},
"keywords": [
"javascript",
"graphql",
"babel",
"express",
"rest-api",
"handlebars",
"expressjs",
"api-rest",
"idol",
"beta-release",
"vtuber",
"idol-corp"
],
"author": "Héctor Joel Luna",
"license": "MIT",
"description": "IdolAPI: A RESTful API based on the Israeli VTubers agency Idol Corp.",
"dependencies": {
"@graphql-tools/schema": "^10.0.4",
"@graphql-tools/utils": "^10.2.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"colorette": "^2.0.20",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-rate-limit": "^7.3.1",
"graphql": "^16.8.1",
"graphql-http": "^1.22.1",
"i18n": "^0.15.1",
"jsonwebtoken": "^9.0.2",
"marked": "^12.0.2",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"ruru": "^2.0.0-beta.11"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@eslint/js": "^9.1.1",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/i18n": "^0.13.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.0",
"cross-env": "^7.0.3",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.3.0",
"nodemon": "^3.1.3",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.0",
"rimraf": "^5.0.7"
}
}