-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
{
"name": "api-rest-ts",
"version": "1.0.0",
"description": "A TypeScript simple application template",
"main": "bin/index.ts",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"clean": "rm -Rf ./dist",
"build": "npm run clean && tsc && cp ./src/.env ./dist/.env",
"build2": "npm run clean && tsc && cp ./src/.env ./dist/.env && cp -R ./src/storage ./dist",
"watch": "tsc-watch --onSuccess \"npm start\"",
"serve": "npm run build && npm run seed && npm run start",
"test": "jest --detectOpenHandles",
"test-watch": "tsc-watch --onSuccess \"npm test\"",
"seed": "node ./dist/bin/seeder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DouglasMarq/NITRA-BOT/"
},
"keywords": [
"template",
"node",
"express",
"simple",
"github",
"typescript"
],
"author": "Douglas Marques Alves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DouglasMarq/NITRA-BOT/issues"
},
"devDependencies": {
"@types/config": "^0.0.40",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"ts-node": "^10.4.0",
"tsc-watch": "^4.2.9",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.4",
"config": "^3.3.4",
"discord.js": "^13.2.0",
"discordx": "^7.1.0",
"dotenv": "^10.0.0",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.18",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3",
"ytdl-core": "^4.5.0"
}
}