-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 815 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 815 Bytes
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": "node-typescript-basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"tsc": "tsc",
"dev": "ts-node-dev ./src/server.ts --respawn --transpileOnly",
"prod": "tsc && node ./build/server.js"
},
"author": "Ivan Lencina",
"license": "ISC",
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.0",
"ts-node-dev": "^1.0.0-pre.32",
"twing": "^5.0.2",
"typeorm": "^0.2.29",
"typescript": "^3.3.4000"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"chai": "^4.2.0",
"jest": "^26.6.1",
"ts-jest": "^26.4.3"
}
}