-
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.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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": "library-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register --inspect --ignore-watch node_modules ./src/index.ts",
"gen:types": "ts-node-dev -r tsconfig-paths/register ./src/utils/generateTypes.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.5",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.1",
"@neo4j/graphql": "^3.0.1",
"@neo4j/graphql-ogm": "^3.5.0",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^16.3.0",
"neo4j-driver": "^4.4.3"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}