-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 861 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
34
35
{
"name": "recipe-book-seeder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muratayik/recipe-book-seeder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/muratayik/recipe-book-seeder/issues"
},
"homepage": "https://github.com/muratayik/recipe-book-seeder#readme",
"dependencies": {
"dotenv": "^16.3.1",
"pg": "^8.11.3",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@types/node": "^20.6.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}