-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "bare-chips",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js --debug",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"imports": {
"#service/*.js": "./src/service/*.js",
"#auth/*.js": "./src/auth/*.js",
"#http/*.js": "./src/http/*.js",
"#util/*.js": "./src/util/*.js",
"#gql/*.js": "./src/gql/*.js",
"#db/*.js": "./src/db/*.js"
},
"eslintConfig": {
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 2022
},
"settings": {
"import/resolver": {
"jsconfig": {
"config": "jsconfig.json"
}
}
},
"extends": [
"eslint:recommended",
"airbnb"
],
"rules": {
"import/extensions": [
"error",
"ignorePackages",
{
".js": "never"
}
],
"import/prefer-default-export": [
"off"
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"no-underscore-dangle": "off",
"implicit-arrow-linebreak": [
"error",
"below"
],
"indent": [
"error",
2
]
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.7.1",
"@apollo/subgraph": "^2.4.7",
"awilix": "^8.0.1",
"bcrypt": "^5.1.0",
"better-sqlite3": "^8.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"eslint-import-resolver-jsconfig": "^1.1.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.3"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"nodemon": "^2.0.22"
}
}