-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 855 Bytes
/
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
{
"name": "medium-lite",
"version": "0.1.0",
"description": "Lite-test version of Medium",
"main": "src/applications/index.ts",
"scripts": {
"build": "del-cli -rf build && tsc",
"start": "node build/applications/index.js"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"del-cli": "^5.0.0",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.6",
"tslib": "^2.4.1",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/eslint": "^7.28.0",
"@types/express": "^4.17.17",
"@types/node": "^14.14.31",
"@types/source-map-support": "^0.5.4",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}