This repository was archived by the owner on Aug 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.68 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.68 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
81
82
83
{
"name": "themezer_api",
"version": "1.0.0",
"description": "The API for Themezer",
"private": false,
"license": "GPL-3.0",
"scripts": {
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --ignore-path .eslintignore .",
"lint-fix": "eslint --ext .js,.ts --ignore-path .gitignore --ignore-path .eslintignore . --fix",
"build": "rimraf dist && tsc",
"start": "node ./dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon"
},
"keywords": [],
"author": "Migushthe2nd <[email protected]>",
"dependencies": {
"@themezernx/json-merger": "https://github.com/ThemezerNX/JSON-Merger.git",
"@themezernx/layout-id-parser": "^1.0.4",
"adm-zip": "^0.5.10",
"apollo-server-express": "^2.13.1",
"apollo-server-plugin-response-cache": "^0.5.3",
"axios": "^0.21.1",
"consola": "^2.12.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dompurify": "^2.2.6",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"exifr": "^7.1.3",
"express": "^4.17.1",
"extract-zip": "^2.0.0",
"fs-symlink": "^1.2.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^5.0.0",
"graphql-type-json": "^0.3.1",
"i18n": "^0.13.3",
"image-size": "^1.0.0",
"imagemagick": "^0.1.3",
"is-jpeg-file": "https://github.com/Migushthe2nd/is-jpeg-file.git",
"is-yaz0-file": "https://github.com/Migushthe2nd/is-yaz0-file.git",
"is-zip-file": "^1.0.2",
"join-monster": "^2.1.2",
"join-monster-graphql-tools-adapter": "^0.1.0",
"jsdom": "^16.4.0",
"mvdir": "^1.0.17",
"node-filter-async": "^2.0.0",
"object-hash": "^2.0.3",
"pg-promise": "^10.5.5",
"pg-tsquery": "^8.2.0",
"python-shell": "^2.0.1",
"rimraf": "^3.0.2",
"sharp": "^0.32.0",
"tmp": "^0.2.1",
"uuidv4": "^6.1.0",
"webhook-discord": "^3.7.4"
},
"resolutions": {
"**/**/fs-capacitor": "^6.2.0",
"**/graphql-upload": "^11.0.0"
},
"devDependencies": {
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.4",
"prettier": "^1.19.1"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "tsc && npm start",
"ext": "ts"
},
"repository": "https://github.com/ThemezerNX/API.git"
}