-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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": "@polusgg/server-cosmetics",
"version": "0.1.0-22",
"description": "The Polus.gg cosmetic server",
"main": "index.ts",
"scripts": {
"start": "npm run start:dev",
"start:dev": "ts-node index.ts",
"start:prod": "node dist/index.js",
"build": "tsc -p .",
"clean": "rimraf ./dist",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polusgg/server-cosmetics.git"
},
"author": "Polus.gg",
"license": "ISC",
"bugs": {
"url": "https://github.com/polusgg/server-cosmetics/issues"
},
"homepage": "https://github.com/polusgg/server-cosmetics",
"dependencies": {
"@polusgg/module-cosmetics": "latest",
"@polusgg/module-polusgg-auth-api": "1.0.1-19",
"@types/express": "^4.17.12",
"@types/mongodb": "^3.6.17",
"ajv": "^6.12.6",
"discord.js": "^13.1.0",
"express": "^4.17.1",
"form-urlencoded": "^6.0.4",
"got": "^11.8.2",
"mongodb": "^3.6.9",
"ts-node": "^10.0.0",
"typescript": "4.3.5",
"uuidv4": "^6.2.10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-plugin-tsdoc": "^0.2.14"
},
"engines": {
"node": ">=15"
}
}