This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@enzymefinance/monorepo",
"private": true,
"workspaces": [
"packages/*",
"config/*",
"example"
],
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"outputs": [
"dist/**",
"artifacts/**",
"cache/**"
]
},
"test": {
"dependsOn": [
"build"
],
"outputs": []
},
"typecheck": {
"outputs": []
},
"lint": {
"outputs": []
},
"format": {
"outputs": []
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
}
},
"scripts": {
"compile": "turbo run compile --cache-dir=.turbo/cache",
"build": "turbo run build --cache-dir=.turbo/cache",
"test": "turbo run test --cache-dir=.turbo/cache",
"clean": "turbo run clean --no-cache && rimraf -rf node_modules .turbo",
"prettier": "prettier --list-different --ignore-path .gitignore \"**/*.{js,ts,json,md,yml,sol}\"",
"format": "yarn prettier --write && turbo run format --cache-dir=.turbo/cache",
"lint": "manypkg check && yarn prettier && turbo run lint --cache-dir=.turbo/cache",
"typecheck": "turbo run typecheck --cache-dir=.turbo/cache",
"release": "yarn build && changeset publish",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@enzymefinance/babel-config": "^1.0.17",
"@enzymefinance/eslint-config": "^1.0.17",
"@manypkg/cli": "^0.19.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.13",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"turbo": "^1.1.1",
"typescript": "^4.5.5"
},
"prettier": "@enzymefinance/prettier-config-solidity",
"lint-staged": {
"*.{js,ts,json,md,yml,sol}": "prettier --write"
}
}