-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "siase-api",
"version": "1.0.0",
"description": "Un rest api para consumir los datos de SIASE",
"main": "index.js",
"scripts": {
"start": "node build/webapi/index.js",
"build": "tsc",
"build-w": "tsc -w",
"dev": "nodemon build/webapi/index.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GDSC-UANL/siase-api.git"
},
"author": "GDSC UANL",
"license": "ISC",
"bugs": {
"url": "https://github.com/GDSC-UANL/siase-api/issues"
},
"homepage": "https://github.com/GDSC-UANL/siase-api#readme",
"dependencies": {
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"iconv-lite": "^0.6.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"node_extra_ca_certs_mozilla_bundle": "^1.0.4",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.30",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/iconv-lite": "0.0.1",
"@types/jsonwebtoken": "^8.5.6",
"@types/morgan": "^1.9.3",
"nodemon": "^2.0.15"
},
"_moduleAliases": {
"@siaseApi": "./build"
}
}