-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 907 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 907 Bytes
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
{
"name": "ruapi",
"version": "1.0.0",
"description": "A API for university restaurant",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlmiranteFuchs/RUAPI.git"
},
"keywords": [
"RU",
"UFPR",
"API"
],
"author": "B. Fuchs",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlmiranteFuchs/RUAPI/issues"
},
"homepage": "https://github.com/AlmiranteFuchs/RUAPI#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.31",
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
}
}