-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 739 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 739 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
{
"name": "api_cappuchino",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build && cp -R ./public/ ./dist/ && cp ./package.json ./dist/",
"dev": "nodemon",
"start": "node dist/index.js",
"professors": "node ./script/professor/index.js"
},
"keywords": [],
"author": "@Avsco",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.3",
"helmet": "^5.0.2",
"puppeteer": "^13.5.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/puppeteer": "^5.4.5",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}