-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
41
42
43
{
"name": "tirij-api",
"version": "0.1.2",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://github.com/Sergeant61/tirij-api#readme",
"repository": {
"type": "git",
"url": "git@github.com:Sergeant61/tirij-api.git"
},
"scripts": {
"start": "npm run build && node build/index.js",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "Recep Özen",
"email": "rec1856rec@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"node-fetch": "^3.2.2",
"nodemon": "^2.0.15"
}
}