-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@lyne/monorepo",
"version": "1.0.0",
"main": "index.js",
"author": "Joseph Chen, Benson Jin, Di Zhou, Jalen Xu, David Tang",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.13 <17"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run --parallel start",
"test": "lerna run --parallel test",
"test:coverage": "lerna run --parallel test:coverage",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts,.tsx"
},
"devDependencies": {
"@swc/core": "^1.2.66",
"@swc/helpers": "^0.2.12",
"@types/node": "^16.4.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.5.5"
}
}