-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "piano-task-server",
"version": "1.0.0",
"private": true,
"description": "GraphQL server for the React piano-app",
"main": "index.js",
"scripts": {
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src",
"eslint-fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"start": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "flowkey",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.8.1",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"mongodb": "^5.7.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"mongodb-memory-server": "^8.13.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}