-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.73 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.73 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
{
"name": "wikisync-api",
"version": "1.0.0",
"description": "API for the WikiSync feature",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"typeCheckAndDoNotRun": "ONLY_TYPECHECK_AND_DO_NOT_RUN= ts-node src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"convertUsernamesToLowercase": "ts-node src/scripts/convertUsernamesToLowercase.ts",
"copyOldPlayerData": "ts-node src/scripts/copyOldPlayerData.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/weirdgloop/wikisync-api.git"
},
"author": "[Jayden Bailey] (github.com/jayktaylor)",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/weirdgloop/wikisync-api/issues"
},
"homepage": "https://gitlab.com/weirdgloop/wikisync-api#readme",
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "5.0.0-beta.3",
"lodash": "^4.17.21",
"mysql2": "^3.11.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.39.1",
"eslint-config-airbnb-extended": "^2.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"nodemon": "^3.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}