-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "graphql-mongodb-typescript-blog",
"version": "1.0.0",
"description": "Blog starter with GraphQL,Typescript,MongoDB",
"main": "dist/server.js",
"scripts": {
"start": "npm run build && node dist/server.js",
"build": "tsc -p . && ncp src/graphql/schemas/ dist/graphql/schemas",
"start:dev": "npm run build:dev",
"build:dev": "nodemon src/server.ts --exec ts-node src/server.ts -e ts,graphql",
"test": "jest --config ./jest.config.js --coverage --watchAll --testPathPattern=test/unit-test --detectOpenHandles"
},
"keywords": [
"nodejs",
"typescript",
"graphql",
"apollo",
"express"
],
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
},
"author": "Vinod",
"license": "MIT",
"devDependencies": {
"@types/compression": "^0.0.36",
"@types/express": "^4.17.8",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^9.1.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^11.15.27",
"nodemon": "^1.19.4"
},
"dependencies": {
"apollo-server": "^3.6.3",
"apollo-server-express": "^2.17.0",
"apollo-server-testing": "^2.25.3",
"body-parser": "^1.19.0",
"chai": "^4.3.6",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.7.0",
"graphql-depth-limit": "^1.1.0",
"graphql-import": "^0.7.1",
"graphql-import-node": "^0.0.1",
"http": "^0.0.0",
"jest": "^27.5.1",
"jest-transform-graphql": "^2.1.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.2.1",
"mongoose": "^5.10.6",
"ncp": "^2.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}