-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 934 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": "anime-api",
"version": "0.1.5",
"description": "anime api",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --loader ts-node/esm ./index.ts",
"dev": "nodemon index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodriabregu/my-anime-api.git"
},
"author": "Rodrigo Alcino",
"license": "ISC",
"bugs": {
"url": "https://github.com/rodriabregu/my-anime-api/issues"
},
"homepage": "https://github.com/rodriabregu/my-anime-api#readme",
"dependencies": {
"apollo-server": "^3.6.3",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"graphql": "^16.3.0",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
}
}