-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "nodejs-restaurant-server",
"version": "1.0.0",
"description": "NodeJS Sample Restaurant Server",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build": "sequelize-cli db:migrate && sequelize-cli db:seed:all",
"test": "jest"
},
"contributors": [
"Tiziano Pessa <tiziano@firenze.dev>",
"Lorenzo Spinelli <lorenzo@firenze.dev>"
],
"license": "MIT",
"dependencies": {
"@fastify/websocket": "^7.0.1",
"apollo-datasource": "^3.3.2",
"apollo-server-core": "^3.10.0",
"apollo-server-fastify": "^3.10.0",
"dataloader": "^2.1.0",
"fastify": "^3.29.1",
"graphql": "^16.5.0",
"graphql-depth-limit": "^1.1.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.10.1",
"lodash": "^4.17.21",
"sequelize": "^6.21.3",
"sqlite3": "^5.0.11"
},
"devDependencies": {
"jest": "^29.0.2",
"sequelize-cli": "^6.4.1"
},
"engines": {
"node": ">=16.x"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}