-
Notifications
You must be signed in to change notification settings - Fork 275
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@graphql-nexus/example-fullstack-tutorial-server",
"version": "0.0.0",
"description": "",
"license": "ISC",
"author": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --no-notify --transpileOnly --respawn src/index.ts",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
]
},
"dependencies": {
"apollo-datasource": "^0.2.0",
"apollo-datasource-rest": "^0.2.0",
"apollo-server": "^2.18.1",
"apollo-server-testing": "^2.18.1",
"dedent": "^0.7.0",
"fullstack-tutorial": "apollographql/fullstack-tutorial.git",
"graphql": "^16.3.0",
"graphql-tools": "^4.0.7",
"isemail": "^3.2.0",
"nexus": "^1.0.0",
"sequelize": "^5.21.2",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"apollo": "^2.0.0-beta.89",
"apollo-link": "^1.2.3",
"apollo-link-http": "^1.5.5",
"jest": "^24.3.1",
"nock": "^10.0.2",
"node-fetch": "^2.2.1",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^4.5.5"
}
}