-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
39
40
41
42
{
"name": "prx-acceptance-tests",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": "true",
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"lint": "prettier --check '**/*.{json,yml}' && eslint -- '**/*.{js,mjs,ts}' && tsc",
"start": "cypress open",
"test": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRX/acceptance-tests.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PRX/acceptance-tests/issues"
},
"homepage": "https://github.com/PRX/acceptance-tests#readme",
"dependencies": {
"cypress": "*",
"cypress-dotenv": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "*",
"@typescript-eslint/eslint-plugin": "*",
"dotenv": "^16.3.1",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-cypress": "*",
"eslint-plugin-prettier": "*",
"prettier": "*",
"typescript": "*"
}
}