-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
38
39
40
41
42
43
44
{
"name": "gql-users-subgraph",
"version": "1.0.0",
"description": "GraphQL Users Subgraph",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"install:clean": "rm -rf node_modules && npm install",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint --ext .ts src",
"lint:fix": "tsc --noEmit && eslint --ext .ts src --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "tsc",
"start": "npm run start:dev",
"start:dev": "NODE_ENV=development node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"start:prod": "NODE_ENV=production npm run transpile && node dist/index.js"
},
"dependencies": {
"@apollo/server": "^4.10.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"envalid": "^8.0.0",
"express": "^4.18.2",
"graphql": "^16.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}