-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "graphql-course-qa",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "nodemon --watch 'server.ts' --exec 'ts-node' server.ts"
},
"jest": {
"collectCoverageFrom": [
"!**/node_modules/**",
"!**/vendor/**"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@types/mongodb": "^3.1.19",
"@types/react": "^16.7.18",
"apollo-boost": "^0.1.27",
"graphql-tools": "^4.0.4",
"graphql-yoga": "^1.17.1",
"mongo-in-memory": "^0.0.5",
"mongodb": "^3.1.13",
"next": "^7.0.2",
"react": "^16.8.0-alpha.0",
"react-apollo": "^2.4.1",
"react-dom": "^16.8.0-alpha.0",
"stellar-sdk": "^0.11.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/next": "^7.0.6",
"@types/node": "^10.12.18",
"@types/stellar-sdk": "^0.11.0",
"@zeit/next-typescript": "^1.1.1",
"jest": "23.0.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
}
}