-
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) · 924 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 924 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": "alumnos-vac",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.6",
"dayjs": "^1.11.19",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mssql": "^12.2.0",
"sqlite3": "^5.1.7",
"tsc": "^2.0.4",
"xlsx": "^0.18.5"
},
"description": "",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mssql": "^9.1.9",
"@types/node": "^25.2.3",
"@types/xlsx": "^0.0.35",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true
}
}