-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
44
45
46
47
48
49
{
"name": "applicant-tracker",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc",
"start": "pnpm build && nodemon dist/index.js",
"lint": "eslint . --ext .ts",
"dev": "nodemon ./src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.4.0",
"@neo4j/graphql": "^3.16.1",
"@typescript-eslint/parser": "^5.53.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"morgan": "^1.10.0",
"neo4j-driver": "^5.5.0"
},
"devDependencies": {
"@graphql-tools/mock": "^8.7.18",
"@graphql-tools/schema": "^9.0.16",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"dotenv": "^8.6.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.20",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}