-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "learn-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./public/scripts/index.js",
"heroku-postbuild": "babel src --out-dir=public/scripts --presets=@babel/preset-env --delete-dir-on-start --copy-files",
"dev": "nodemon --require dotenv/config --ext js,graphql ./public/scripts/index.js ",
"build": "babel src --out-dir=public/scripts --presets=@babel/preset-env --delete-dir-on-start --copy-files --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@graphql-tools/graphql-file-loader": "^7.4.0",
"@graphql-tools/load": "^7.7.0",
"@graphql-tools/schema": "^8.5.0",
"@paljs/plugins": "^4.1.0",
"@prisma/client": "^4.0.0",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.9.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"ws": "^8.8.1"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"nodemon": "^2.0.19",
"prisma": "^4.0.0"
}
}