-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 977 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
{
"name": "unbody-common",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test -- --passWithNoTests",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"format:all": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:staged": "pretty-quick --staged",
"prepare": "husky install"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/jest": "^29.4.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@changesets/cli": "^2.26.0",
"babel-jest": "^29.4.1",
"jest": "^29.4.1"
},
"packageManager": "[email protected]"
}