-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "nodejs-flyff",
"version": "1.0.0",
"main": "index.js",
"license": "GPL-3.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "ts-node src/main.ts",
"dev": "nodemon src/main.ts",
"dev:login": "yarn dev login",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p ts-config.json",
"build:watch": "tsc -w -p ts-config.json",
"build:release": "npm run clean && tsc -p ts-config-release.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write .",
"test-client": "npx ts-node src/testClient.ts"
},
"dependencies": {
"cli-color": "^2.0.4",
"crypto-js": "^4.2.0",
"fs-extra": "^11.2.0",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/cli-color": "^2.0.6",
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.0",
"@types/node": "^22.7.4",
"@types/node-cron": "^3.0.11",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}