-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.14 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
{
"name": "@pairwise/cypress",
"version": "0.0.1",
"description": "Pairwise Cypress test suite",
"private": true,
"scripts": {
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress:ci": "cypress run --env CLIENT_APP_URL=http://client:3000,EXTERNAL_SERVICES_URL=http://external-services:7000,TIMEOUT=2000",
"prettier": "prettier --list-different \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"eslint": "eslint 'src/**/*.{ts,tsx}'",
"eslint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "yarn prettier:fix && yarn eslint:fix",
"lint": "yarn prettier && yarn eslint",
"test": "yarn lint && yarn tsc",
"tsc": "tsc --pretty --noEmit",
"build": "yarn tsc"
},
"dependencies": {
"@cypress/webpack-preprocessor": "4.1.1",
"cypress": "8.4.1",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.8",
"eslint-plugin-prefer-arrow": "1.2.2",
"prettier": "2.3.1",
"ts-loader": "6.2.1",
"typescript": "4.3.4",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
}
}