-
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) · 987 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 987 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
29
30
31
32
33
34
35
36
37
{
"name": "insert-q",
"version": "1.0.0",
"description": "App de Q&A para Insert Code",
"main": "index.js",
"scripts": {
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"start": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insertcode/insert-q.git"
},
"author": "Xabadu <xabadu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/insertcode/insert-q/issues"
},
"homepage": "https://github.com/insertcode/insert-q#readme",
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"prettier": "2.2.1"
},
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^3.14.2",
"knex": "^0.95.4",
"mysql2": "^2.2.5",
"tmi.js": "^1.8.3"
}
}