-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "graphql",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.1",
"apollo-boost": "^0.4.9",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"apollo-server": "^2.25.0",
"apollo-server-testing": "^2.25.2",
"bcrypt": "^5.0.1",
"dataloader": "^2.0.0",
"datasource-sql": "^1.4.1",
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"graphql": "^15.5.0",
"isemail": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.6",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3"
}
}