-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
35
36
37
38
39
40
{
"name": "quick-note-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "ts-node-dev src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fredrbo/quick-note-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fredrbo/quick-note-api/issues"
},
"homepage": "https://github.com/fredrbo/quick-note-api#readme",
"dependencies": {
"@types/node-fetch": "^2.6.4",
"bootstrap": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"pg": "^8.11.0",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"ts-node": "^10.9.1"
}
}