This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 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
63
64
65
{
"name": "a-todo-server",
"version": "0.5.0",
"private": true,
"engines": {
"node": ">=18.16.1",
"yarn": ">=1.22.19"
},
"repository": "https://github.com/goldentrash/A-ToDo-Server.git",
"author": "goldentrash <[email protected]>",
"scripts": {
"prepare": "husky install",
"start": "node --trace-deprecation --abort-on-uncaught-exception --require=ts-node/register --watch ./app.ts",
"profile": "scripts/profile.sh doctor",
"profile:io": "scripts/profile.sh bubbleprof",
"profile:cpu": "scripts/profile.sh flame",
"test": "mocha",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"build": "tsc && docker build --tag goldentrash/a-todo-server:latest .",
"docker:push": "docker push goldentrash/a-todo-server",
"docker:pull": "scripts/up2date_container.sh"
},
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"expo-server-sdk": "^3.7.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.1",
"knex": "^2.5.1",
"morgan": "~1.9.1",
"mysql2": "^3.5.2",
"node-schedule": "^2.1.1",
"rotating-file-stream": "^3.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/mysql": "^2.15.21",
"@types/node": "^20.4.0",
"@types/node-schedule": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"artillery": "^2.0.0-37",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"clinic": "^13.0.0",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"prettier-plugin-sh": "^0.13.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}