-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 970 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
42
{
"name": "@currents/cypress-monorepo",
"version": "1.0.0",
"description": "",
"private": true,
"author": "Currents Software Inc.",
"license": "GPL-3.0-or-later",
"workspaces": [
"e2e/*",
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "FORCE_COLOR=1 turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format-check": "prettier --check \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"eslint-config-custom": "latest",
"husky": "^8.0.3",
"prettier": "latest",
"pretty-quick": "^3.1.3",
"turbo": "^1.10.13"
},
"engines": {
"node": ">=14.0.0"
},
"resolutions": {
"debug": "^4.3.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false
}
}