-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "tvdb-graphql-api",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"packageManager": "pnpm@8.15.1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"precommit": "pnpm run lint",
"lint": "eslint --fix src/**",
"dev": "nodemon -e .js,.graphql --exec babel-node src/index.js",
"build": "babel src -d dist --copy-files",
"start": "node dist/index.js"
},
"dependencies": {
"@apollo/datasource-rest": "^6.3.0",
"@apollo/server": "^4.11.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/node": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"eslint": "8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
}
}