-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "discord-oauth2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/server.ts",
"prebuild": "rm -rf node_modules && rm -f package-lock.json && rm -rf dist && npm i",
"build": "babel src --out-dir dist --extensions \".ts\" --copy-files"
},
"keywords": [
"discord",
"oauth2"
],
"author": "ArturMiguel",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"dependencies": {
"axios": "^0.20.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1"
}
}