-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"apollo-server": "^2.18.2",
"bcrypt": "^5.0.0",
"google-auth-library": "^6.1.2",
"graphql": "^15.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9",
"node-fetch": "^2.6.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"test": "jest --coverage",
"publish:coverage": "./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"lint": "prettier --write 'src/**/*.{ts,tsx,js,jsx}' 'tests/**/*.{ts,tsx,js,jsx}'"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcrypt": "^3.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.14.2",
"apollo-server-testing": "^2.18.2",
"coveralls": "^3.1.0",
"graphql-tag": "^2.11.0",
"jest": "^26.6.0",
"mongodb-memory-server": "^6.9.2",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1"
}
}