-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.2 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.2 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mmorpg-mz",
"private": true,
"dependencies": {
"@comuns-rpgmaker/plugin-metadata": "^0.2.4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@mikro-orm/core": "^5.1.1",
"@mikro-orm/migrations": "^5.1.1",
"@mikro-orm/postgresql": "^5.1.1",
"@sentry/node": "^6.19.6",
"@sentry/tracing": "^6.19.6",
"apicache": "^1.6.3",
"async": "^3.1.0",
"axios": "^0.27.2",
"body-parser": "^1.15.1",
"concurrently": "^7.2.2",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"cors-anywhere": "^0.4.4",
"discord.js": "^13.8.1",
"dotenv": "^16.0.0",
"esbuild": "^0.14.49",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.4",
"express": "*",
"express-http-proxy": "^1.6.3",
"jsonwebtoken": "^8.5.1",
"pino": "^7.9.2",
"pino-http": "^6.6.0",
"pino-multi-stream": "^6.0.0",
"pino-pretty": "^7.6.0",
"rimraf": "^3.0.2",
"rmmz": "github:niokasgami/rpg-maker-mz-typescript",
"rollup": "^2.75.7",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-external-globals": "^0.6.1",
"socket.io": "4.4.1",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"uuid": "^8.3.2",
"yarn-bound": "^0.2.16"
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
},
"testPathIgnorePatterns": [
"dist",
"src/admin_dev/bower_components"
],
"setupFiles": [
"<rootDir>/.jest/setEnvVars.ts"
]
},
"engines": {
"node": ">=v16.x"
},
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 \"src/admin/**/*\" dist/",
"lint": "eslint .",
"build": "npm run clean && npm run copy-files && tsc && rollup -c",
"start": "node dist/mmo.js",
"tsnode": "ts-node src/mmo.ts",
"dev": "concurrently --kill-others \"nodemon src/mmo.ts\" \"rollup -c -w\"",
"test": "jest"
},
"devDependencies": {
"@mikro-orm/cli": "^5.1.1",
"@mikro-orm/sqlite": "^5.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.7.1",
"rollup-plugin-prettier": "^2.2.2",
"socket.io-client": "^4.4.1",
"ts-jest": "^27.1.4",
"typescript": "^4.7.4"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}