-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·62 lines (62 loc) · 2 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
62
{
"name": "blackbird-devkit",
"version": "1.0.0",
"main": "src/server.ts",
"scripts": {
"start": "ts-node src/server.ts",
"start:dev": "NODE_ENV=development ts-node-dev --ignore-watch node_modules src/server.ts",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "tsc && npm run obfuscate && npm run minify",
"migrate:make": "knex migrate:make --knexfile ./src/db/config.ts",
"migrate:latest": "knex migrate:latest --knexfile ./src/db/config.ts",
"migrate:rollback": "knex migrate:rollback --knexfile ./src/db/config.ts",
"seed:make": "knex seed:make --knexfile ./src/db/config.ts",
"seed:run": "knex seed:run --knexfile ./src/db/config.ts",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.{ts,html,css,scss,json,md}\"",
"minify": "node minify.js",
"obfuscate": "npx javascript-obfuscator dist --output dist",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/express": "^4.17.21",
"bcrypt": "^5.1.1",
"camelcase-keys": "^9.1.3",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"handlebars": "^4.7.8",
"husky": "^9.1.5",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql2": "^3.11.0",
"nodemailer": "^6.9.14",
"snakecase-keys": "^8.0.1",
"typescript": "^5.5.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.3.0"
}
}