-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1002 Bytes
/
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
{
"name": "back-end",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev:server": "tsnd --inspect --transpile-only --ignore-watch node_modules src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"cheerio": "^1.0.0-rc.9",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"iconv-lite": "^0.6.3",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.23",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.47",
"jest": "^27.0.4",
"prettier": "^2.1.2",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"engines": {
"node": "14.19.1",
"yarn": "1.22.18"
}
}