forked from rottenMonke/vk-node-api-game-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
36
{
"name": "vk-node-api-game-example",
"version": "1.0.0",
"description": "A basic setup for working with vk api for games, specifically setting a score for a game.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"start": "node dist/index.js",
"go": "npm run build && npm run start",
"start:prod": "npm run build && npx pm2 start ./dist/index.js --watch=false "
},
"repository": {
"type": "git",
"url": "git+https://github.com/azakaWow/vk-node-api-game-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/azakaWow/vk-node-api-game-example/issues"
},
"homepage": "https://github.com/azakaWow/vk-node-api-game-example#readme",
"dependencies": {
"fastify": "^3.21.6",
"fastify-cors": "^6.0.2",
"md5": "^2.3.0",
"node-fetch": "^3.0.0",
"pino-pretty": "^7.0.1"
},
"devDependencies": {
"@types/node": "^16.10.2",
"dotenv": "^10.0.0",
"pm2": "^5.1.2",
"typescript": "^4.4.3"
}
}