forked from ShadowManu/prestige-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"test": "npm run test:tsc && npm run test:lint",
"test:tsc": "tsc --noEmit",
"test:lint": "tslint --project tsconfig.json",
"migrations:run": "ts-node ./node_modules/typeorm/cli migrations:run"
},
"dependencies": {
"dedent": "^0.7.0",
"dotenv": "^5.0.0",
"lodash": "^4.17.5",
"node-telegram-bot-api": "^0.30.0",
"reflect-metadata": "^0.1.12",
"sqlite3": "^3.1.13",
"typeorm": "^0.1.14"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/dotenv": "^4.0.2",
"@types/lodash": "^4.14.106",
"@types/node": "^9.4.6",
"@types/node-telegram-bot-api": "^0.28.2",
"nodemon": "^1.14.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.6.2"
}
}