-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "scratch-bonanza-server",
"version": "1.0.0",
"author": "Michael Kolesidis <[email protected]> (https://michaelkolesidis.com/)",
"license": "AGPL-3.0-or-later",
"description": "The server functionality of Scratch Bonanza, an online scratchcard game.",
"keywords": [
"nodejs",
"api",
"cors",
"express",
"node",
"backend",
"game-server",
"restful-api",
"lottery",
"lottery-game",
"online-game",
"scratchcard",
"number-generator",
"scratch-and-win",
"scratchcard-game"
],
"repository": "https://github.com/michaelkolesidis/scratch-bonanza-server.git",
"homepage": "https://github.com/michaelkolesidis/scratch-bonanza-server/",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --exit-child --watch src src/index.ts"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}