-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "yllet",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.3",
"jest-mock": "28.1.3",
"lerna": "^4.0.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build",
"start": "lerna run start",
"test": "jest packages/**",
"postinstall": "lerna bootstrap",
"lint": "eslint packages/**/src --ext .ts",
"format": "prettier --write 'packages/**/src/**/*.ts*' packages/**/test/**/*.ts*"
}
}