-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "strava-calendar",
"scripts": {
"start": "ts-node-dev -r dotenv/config src/index.ts",
"prod": "ts-node-transpile-only -r dotenv/config src/index.ts",
"migrate:up": "ts-node-dev -r dotenv/config node_modules/typeorm/cli migration:run -d src/services/database.ts",
"migrate:down": "ts-node-dev -r dotenv/config node_modules/typeorm/cli migration:revert -d src/services/database.ts"
},
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/iron": "^7.0.1",
"@hapi/yar": "^11.0.1",
"@joi/date": "^2.1.0",
"@types/hapi": "^18.0.11",
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"formdata-polyfill": "^4.0.10",
"joi": "^17.9.2",
"memory-cache": "^0.2.0",
"node-html-parser": "^6.1.6",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@types/hapi__yar": "^10.1.2",
"@types/memory-cache": "^0.2.3",
"@types/node": "^18.17.11",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}