-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "raments",
"version": "0.0.3",
"description": "Just another ✨Backend API Framework✨ for javascript\r ## The plan\r Currently it's just me trying to create a javascript framework for making APIs. This is definitely inspired if not copied from the Express framework",
"main": "dist/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"run:dev": "nodemon index.js",
"run:test:auth": "nodemon examples/authentication/index.js",
"run:test:filesystem": "nodemon dist/examples/filesystem/index.js",
"run:test:middlewares": "nodemon dist/examples/middlewares/index.js",
"run:test:annotations": "nodemon dist/examples/annotations/index.js",
"compile": "tsc"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ohayouarmaan/ramen.git"
},
"author": "Armaan Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/ohayouarmaan/ramen/issues"
},
"homepage": "https://github.com/ohayouarmaan/ramen#readme",
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"colors": "^1.4.0",
"ejs": "^3.1.8",
"parse-multipart-data": "^1.5.0",
"reflect-metadata": "^0.1.13"
}
}