-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 985 Bytes
/
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
{
"name": "packtypus",
"version": "1.0.0",
"description": "A TypeScript server to host oraxen resource packs",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"dev": "npm run build && npm start",
"start": "node ./dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "xHyroM",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.6.3"
},
"dependencies": {
"express": "^4.18.1",
"express-fileupload": "github:remtori/express-fileupload",
"toml": "^3.0.0",
"toml-node": "^0.0.1"
}
}