-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 1.24 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
{
"name": "ello",
"version": "1.0.1",
"description": "nodejs graphql server",
"main": "main.js",
"repository": "https://github.com/iampato/ello",
"author": "Patrick Waweru",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc && cp .env ./dist/.env",
"dev": "yarn build && yarn start",
"start": "node dist/main.js",
"test": "jest"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/body-parser": "^1.19.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/graphql": "14.5.0",
"@types/jest": "^29.5.5",
"@types/morgan": "^1.9.6",
"@types/node": "^16.11.1",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"nodemon": "^2.0.15",
"rimraf": "^5.0.5",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}