-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
50
51
{
"name": "node-typescript-eslint-airbnb-prettier-template",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"engines": {
"node": "18.18.0"
},
"scripts": {
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node --experimental-specifier-resolution=node dist/index.js",
"lint": "eslint . --ext ts"
},
"aliases": {
"@": "./dist"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"@graphql-tools/merge": "^9.0.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"mongoos": "^0.0.1-security",
"mongoose": "^7.6.3",
"normalize-mongoose": "^1.0.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.11",
"@types/bcrypt": "^5.0.1",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"graphql-tools": "^9.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.3.2"
}
}