-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.138",
"@types/mongoose": "^5.5.17",
"@types/object-hash": "^1.3.0",
"concurrently": "^4.1.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongoose": "^5.7.0",
"object-hash": "^1.3.1",
"reflect-metadata": "^0.1.13",
"telegraf": "^3.32.0",
"tslint": "^5.20.0",
"typegoose": "^5.9.1",
"typescript": "^3.6.3"
}
}