forked from backmeupplz/memcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 886 Bytes
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
{
"name": "memcoin",
"version": "1.0.0",
"description": "Memecoin for @borodutcher",
"main": "dist/app.js",
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"yarn watch-ts\" \"yarn watch-js\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js"
},
"repository": "https://github.com/backmeupplz/memcoin",
"author": "backmeupplz <backmeupplz@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/dotenv": "^4.0.3",
"@types/mongoose": "^5.2.5",
"concurrently": "^3.6.1",
"dotenv": "^6.0.0",
"mongoose": "^5.2.7",
"reflect-metadata": "^0.1.12",
"telegraf": "^3.22.2",
"tslint": "^5.11.0",
"typegoose": "^5.2.1",
"typescript": "^3.0.1"
}
}