forked from DadJokes-io/Dad_Jokes_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "dadjoketype",
"version": "1.0.0",
"description": "unlimited dad jokes api",
"main": "index.js",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.27",
"@types/morgan": "^1.9.1",
"apollo-server-express": "^2.19.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"helmet": "^4.1.1",
"husky": "^4.3.0",
"jest": "^26.5.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"morgan": "^1.10.0",
"prettier": "^2.1.2",
"text2png": "^2.3.0",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2"
},
"devDependencies": {
"@types/node": "^14.14.19",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"restartable": "rs",
"ignore": [
".git",
"node_modules/",
"dist/",
"coverage/"
],
"watch": [
"src/"
],
"execMap": {
"ts": "node -r ts-node/register"
},
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,ts",
"scripts": {
"start": "node lib",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"build": "tsc"
},
"author": "Kegen Guyll",
"license": "ISC"
}