-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "my-back-lib",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"db:migrations": "npx knex migrate:latest",
"start-server": "npm run db:migrations && node dist/server/app.js",
"start": "ts-node server/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.11",
"@types/jsonwebtoken": "^9.0.6",
"@types/koa-ratelimit": "^5.0.5",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.2.1",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"knex": "^2.4.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-logger": "^3.2.1",
"koa-ratelimit": "^5.1.0",
"koa-router": "^10.1.1",
"koa2-cors": "^2.0.6",
"node-stream-zip": "^1.15.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa2-cors": "^2.0.2",
"ts-node": "^10.9.1"
}
}