-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "drivertests",
"version": "1.0.0",
"description": "Telegram Bot with driving tests",
"main": "bot.js",
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-react": "^7.32.2",
"prettier": "3.0.0"
},
"scripts": {
"start": "node bot/bot.js",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js . --fix",
"format": "prettier . --check --ignore-path .gitignore",
"format:fix": "prettier . --write --ignore-path .gitignore",
"migrate": "cd db && npx sequelize-cli db:migrate",
"seed": "cd db && npx sequelize-cli db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ILabiak/driverTests.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ILabiak/driverTests/issues"
},
"homepage": "https://github.com/ILabiak/driverTests#readme",
"dependencies": {
"jest": "^29.6.1"
}
}