-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 852 Bytes
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
{
"name": "presup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build-ts",
"start": "node dist/main.js",
"brun": "npm run build && npm run start",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/express": "^4.17.13",
"cors": "^2.8.5",
"discord.js": "^13.2.0",
"express": "^4.17.1"
}
}