-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "ancapsu-api",
"version": "2.0.0",
"description": "API Ancapsu",
"main": "./dist/server.js",
"repository": "https://github.com/LibertarianTeam/ancapsu-api",
"author": "paulloclara <paulloclara@gmail.com>",
"scripts": {
"serve": "ts-node-dev --ignore-watch node_modules src/server.ts",
"build": "tsc --build",
"start": "node .",
"lint": "eslint . --fix"
},
"dependencies": {
"apollo-server": "^3.5.0",
"axios": "^0.24.0",
"class-validator": "^0.13.2",
"dotenv": "^10.0.0",
"graphql": "^15.3.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"license": "MIT"
}