-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "breaking-bad",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"migrate-up": "knex migrate:up",
"migrate-down": "knex migrate:down",
"migrate-latest": "knex migrate:latest",
"seed-run": "knex seed:run",
"seed-make": "knex seed:make",
"tool": "ts-node tools",
"watch": "tsc --watch",
"build": "tsc"
},
"keywords": [],
"author": "Chew Han Xiang <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"better-sqlite3": "^7.6.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"knex": "^2.3.0",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"npm-run-all": "^4.1.5",
"pm2": "^5.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jsdom": "^20.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.15",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"fs-extra": "^10.1.0",
"jsdom": "^20.0.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
}
}