-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 KB
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
48
49
50
51
52
53
54
55
{
"name": "nodeExpress-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=testing jest --watch --verbose --runInBand --silent --omit=dev",
"server": "cross-env NODE_ENV=development nodemon index.js",
"start": "node index.js",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"rollback": "knex migrate:rollback",
"koyeb": "cross-env NODE_ENV=production nodemon index.js"
},
"engines": {
"node": "20.9.0",
"npm": "10.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rigo0523/nodeExpress-graphQL.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rigo0523/nodeExpress-graphQL/issues"
},
"homepage": "https://github.com/rigo0523/nodeExpress-graphQL#readme",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@neondatabase/serverless": "^0.6.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-graphql-header": "^1.0.1",
"express-ws": "^5.0.2",
"graphql": "^15.8.0",
"graphql-http": "^1.22.0",
"graphql-playground-middleware-express": "^1.7.23",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"knex": "^2.5.1",
"knex-cleaner": "^1.3.1",
"moment": "^2.29.4",
"pg": "^8.10.0"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.22"
}
}