-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (35 loc) · 1005 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
{
"name": "eas-build",
"private": "true",
"scripts": {
"start": "lerna run start --stream --parallel",
"watch": "lerna run watch --stream --parallel",
"build": "lerna run build",
"lint": "eslint 'packages/*/src/**/*.ts'",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"clean": "lerna run clean && rm -rf node_modules",
"release": "./scripts/release.sh"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "20.14.2",
"eslint": "8.56.0",
"eslint-config-universe": "13.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"lerna": "^7.1.4",
"prettier": "3.3.1",
"typescript": "5.4.5"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "20.14.0",
"yarn": "1.22.22"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}