-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"check:types": "tsc --noEmit",
"copy:testResults": "mv cucumber-report.html dist/specs.html",
"copy:images": "cp -r images dist/images",
"dev": "netlify dev",
"lint": "eslint --ext js,ts,jsx,tsx,vue --cache --fix",
"test": "tsc && cucumber-js"
},
"dependencies": {
"@netlify/functions": "^1.4.0",
"date-fns": "^2.28.0",
"node-fetch": "^3.3.1",
"pg": "^8.10.0"
},
"devDependencies": {
"@cucumber/cucumber": "^10.8.0",
"@types/debug": "^4.1.7",
"@types/node": "^17.0.32",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "7.28",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^8.0.1",
"msw": "^1.1.0",
"prettier": "2",
"ts-node": "^10.8.1",
"typescript": "4.7"
}
}