-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "chatbotsstudioteamb",
"version": "1.0.0",
"description": "## Task ``` 1. Полностью смоделировать базу данных и согласовать с ментором. 2. Сделать скелет структуры проекта на express + typescript 3. Добавить типизацию + enums 4. Добавить методы для работы с БД 5. Засетапиты два GET роута - / teachers, / clients, что будут возвращать все данные из таблиц",
"main": "src/index.ts",
"scripts": {
"seed": "npx knex seed:run",
"migrate": "npx knex migrate:latest --knexfile ./dist/knexfile.js",
"rollback": "npx knex migrate:rollback --knexfile ./dist/knexfile.js",
"tsc": "tsc",
"simple": "tsc && node --unhandled-rejections=strict ./dist/src/index.js",
"build": "rm -rf dist && tsc",
"watch": "tsc --watch",
"dev": "nodemon ./dist/src/index.js",
"start": "node ./dist/src/index.js && npm run migrate && npm run seed",
"record": "node ./dist/src/seed/seed.js",
"generateSchedule": "node ./dist/src/seed/generateSchedule.js"
},
"author": "team-B",
"license": "ISC",
"dependencies": {
"@types/validator": "^13.6.3",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^84.0.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.21",
"pg": "^8.7.1",
"postgres": "^1.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.37",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jsonwebtoken": "^8.5.4",
"typescript": "^4.3.5",
"@types/node": "^16.7.1",
"eslint": "^7.31.0",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinmorfico/chatbots-studio-team-B.git"
},
"bugs": {
"url": "https://github.com/vinmorfico/chatbots-studio-team-B/issues"
},
"homepage": "https://github.com/vinmorfico/chatbots-studio-team-B#readme"
}