-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
39 lines (39 loc) · 895 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
{
"name": "ron-swanson-quotes",
"version": "2.1.1",
"description": "An API for retrieving Ron Swanson quotes",
"repository": {
"type": "git",
"url": "https://github.com/jamesseanwright/ron-swanson-quotes"
},
"keywords": [
"ron",
"swanson",
"quotes",
"parks",
"recreation"
],
"author": "James Wright",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/jamesseanwright/ron-swanson-quotes/issues"
},
"homepage": "https://github.com/jamesseanwright/ron-swanson-quotes",
"scripts": {
"build": "tsc -p .",
"start": "node dist/server"
},
"dependencies": {
"express": "4.17.1",
"express-rate-limit": "^5.5.0"
},
"engines": {
"node": "8.x.x"
},
"devDependencies": {
"@types/express": "4.17.3",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "13.9.0",
"typescript": "3.8.3"
}
}