-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 888 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
{
"name": "version-factory-api",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"type": "commonjs",
"devDependencies": {
"@types/node": "^16.11.10",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "4.5.2"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"axios": "^0.26.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"markdown-link-extractor": "^1.3.1",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.8",
"typeorm": "0.2.43"
},
"scripts": {
"start": "ts-node src/server.ts",
"dev": "nodemon",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
}
}