-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (36 loc) · 942 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
{
"name": "scripts",
"version": "1.0.0",
"description": "",
"main": "./scripts/apply.ts",
"scripts": {
"start": "ts-node ./scripts/apply.ts",
"start-chrome": "open -a 'Google Chrome' --args --remote-debugging-port=9222 -g",
"apply": "ts-node ./scripts/apply.ts SUBMIT",
"test": "jest --detectOpenHandles",
"scrape": "ts-node ./agent/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"fs": "^0.0.1-security",
"languagedetect": "^2.0.0",
"lodash": "^4.17.21",
"path": "^0.12.7",
"process": "^0.11.10",
"puppeteer": "^21.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.3",
"jest": "^29.6.3",
"jest-puppeteer": "^9.0.0"
}
}