-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "blog-graphql-server",
"version": "0.1.0",
"description": "An implementation of a GraphQL Server for a demo blog application",
"author": "Register SpA (https://www.register.it)",
"contributors": [
"Tiziano Pessa (https://github.com/pixel13)",
"Spyna (https://github.com/Spyna)"
],
"repository": "github:Register-it/blog-graphql-server",
"private": true,
"main": "src/index.js",
"scripts": {
"test": "jest",
"start": "node src/index.js",
"build": "npm run db:migrate && npm run db:seed",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all"
},
"license": "MIT",
"dependencies": {
"apollo-datasource": "^0.7.0",
"apollo-server": "^2.14.2",
"dataloader": "^2.0.0",
"graphql": "^15.0.0",
"graphql-fields": "^2.0.3",
"lodash": "^4.17.19",
"module-alias": "^2.2.2",
"sequelize": "^5.21.6",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"apollo-server-testing": "^2.13.0",
"core-js": "^3.6.5",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"sequelize-cli": "^5.5.1"
},
"engines": {
"node": ">=10.x"
},
"_moduleAliases": {
"@root": ".",
"@src": "./src"
},
"jest": {
"moduleNameMapper": {
"^@root/(.*)$": "<rootDir>/$1",
"^@src/(.*)$": "<rootDir>/src/$1"
},
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}