-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 951 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
{
"name": "turf-script",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc --watch",
"start-server": "node --max-old-space-size=4096 --enable-source-maps dist/src/app.js",
"dev": "tsc-watch --noClear --onSuccess 'npm run start-server'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.4",
"axios-retry": "^4.0.0",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"reflect-metadata": "^0.2.1",
"routing-controllers": "^0.10.4",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
}
}