-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "rihanna-rest",
"version": "1.0.0",
"description": "A free REST API for Rihanna quotes.",
"main": "dist/server.js",
"engines": { "node": "16.10.0" },
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/server.ts",
"tsc": "./node_modules/typescript/bin/tsc",
"postinstall": "npm run tsc && mv -i -v public dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiammaCarioca/rihanna-quotes.git"
},
"keywords": [
"rihanna",
"fenty",
"quotes",
"node",
"express",
"RESTful",
"rest-api"
],
"author": "Thiago Giammattey",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiammaCarioca/rihanna-quotes/issues"
},
"homepage": "https://github.com/GiammaCarioca/rihanna-quotes#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"ts-node-dev": "^1.1.8"
}
}