-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.32 KB
/
package.json
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
{
"name": "rpg-maker-fes",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"build": "npm run clean && tsc && tsc-alias",
"clean": "rm -rf ./dist",
"start": "node .",
"start:dev": "NODE_ENV=development node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PretendoNetwork/rpg-maker-fes.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PretendoNetwork/rpg-maker-fes/issues"
},
"homepage": "https://github.com/PretendoNetwork/rpg-maker-fes#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.303.0",
"@typegoose/auto-increment": "^3.0.0",
"colors": "^1.4.0",
"crc-32": "^1.2.2",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-subdomain": "^1.0.5",
"fs-extra": "^8.1.0",
"moment": "^2.29.4",
"mongoose": "^7.0.0",
"morgan": "^1.9.1",
"parse-multipart-data": "^1.5.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"tsc-alias": "^1.8.10",
"typescript": "^4.9.5"
}
}