-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "hearthbot-api",
"version": "0.0.1",
"source": "src/app.ts",
"main": "dist/app.js",
"repository": "[email protected]:j0sh77/hearthbot-api.git",
"author": "Josh <[email protected]>",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^8.5.1",
"@types/bcryptjs": "^2.4.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.8",
"@types/sqlite3": "^3.1.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"deckstrings": "^2.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"jest": "^29.0.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"simple-node-logger": "^21.8.12",
"typescript": "^4.7.4",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mysql": "^2.15.21",
"@types/winston": "^2.4.4",
"esbuild": "^0.15.5",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1"
},
"scripts": {
"clean": "rm -rf dist",
"build": "esbuild src/app.ts --bundle --platform=node --target=node18.5 --outdir=dist && cp src/db/schema/*.js dist/",
"start": "node dist/app.js",
"dev": "NODE_ENV='development' nodemon --ignore '*.test.ts' src/app.ts",
"test": "jest"
}
}