-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "url-checker",
"version": "1.0.0",
"description": "URL Checker API",
"main": "src",
"type": "module",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.0.0"
},
"repository": "https://git.leguidedupatrimoine.com/leguidedupatrimoine/url-checker",
"author": "Le Guide du Patrimoine",
"license": "UNLICENSED",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node -r dotenv/config --watch src dotenv_config_path=.env.development",
"start": "NODE_ENV=production node -r dotenv/config src dotenv_config_path=.env.production",
"lint": "eslint . --ext .js,.cjs,.mjs --fix --ignore-path .gitignore"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.1"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@as-integrations/koa": "^1.1.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"domutils": "^3.1.0",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"graphql-parse-resolve-info": "^4.13.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.2",
"htmlparser2": "^9.0.0",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"sequelize": "^6.35.2",
"sqlite3": "^5.1.6",
"ws": "^8.15.1"
}
}