-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "portalapp",
"description": "",
"main": "dist/app.js",
"homepage": ".",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.17.1",
"express-session": "^1.17.1",
"image-size": "^1.0.1",
"jieba-js": "^1.0.2",
"mongodb": "^4.3.0",
"rimraf": "^3.0.2",
"sharp": "^0.30.3",
"tor-request": "^3.1.0",
"uuid": "^9.0.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/geoip-lite": "^1.4.1",
"@types/node": "^15.12.4",
"@types/nodemailer": "^6.4.4",
"chai": "^4.3.4",
"colors": "^1.4.0",
"mocha": "^9.1.3",
"typescript": "^4.3.4"
},
"scripts": {
"test": "mocha --timeout 30000",
"watch": "nodemon -e ts -w src -x npm run watch:serve",
"watch:serve": "tsc && node dist/app.js",
"clean": "rimraf dist",
"build": "npm run clean && tsc"
},
"author": "",
"license": "ISC"
}