forked from connorads/stackoverflow-fanatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 953 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
40
41
{
"name": "stackoverflow-fanatic",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/connorads/stackoverflow-fanatic"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node --unhandled-rejections=strict build/src/index.js",
"test": "playwright test",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"prestart": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@playwright/test": "^1.41.1",
"@types/node": "^20.11.5",
"gts": "^5.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.3.0",
"env-var": "^7.4.1",
"playwright": "^1.41.1",
"simple-git": "^3.22.0"
}
}