-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
56
57
58
59
60
61
{
"name": "rent-a-ni.co",
"version": "0.0.1",
"description": "Personal link shortening service",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "npx rimraf dist/ && tsc",
"lint": "npx eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"start": "node -r dotenv/config dist/index.js",
"dev": "npm run build && npm start",
"knex:migrate": "knex --knexfile ./knexfile.ts migrate:latest",
"knex:create": "knex --knexfile ./knexfile.ts migrate:make",
"knex:rollback": "knex --knexfile ./knexfile.ts migrate:rollback",
"deploy": "heroku container:push worker --app=rent-a-nico && heroku container:release worker --app=rent-a-nico",
"prepare": "npx husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.2",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.1",
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"fast-json-stringify": "^2.7.4",
"fastify": "^3.15.1",
"fastify-rate-limit": "^5.5.0",
"fastify-static": "^4.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.5",
"nanoid": "^3.1.23",
"pg": "^8.6.0",
"tslib": "^1.14.1",
"uuid": "^3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/rent-a-ni.co.git"
},
"author": "Zaid \"Nico\"",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaida04/rent-a-ni.co/issues"
},
"homepage": "https://github.com/zaida04/rent-a-ni.co#readme"
}