-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 913 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 913 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
31
32
33
34
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@tsconfig/recommended": "1.0.1",
"@types/dotenv-flow": "3.1.1",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"dotenv-flow": "3.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"lerna": "4.0.0",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.4",
"typescript": "^4.2.4"
},
"scripts": {
"clean": "lerna run clean",
"typecheck": "lerna run typecheck",
"build": "lerna run build",
"build:publish": "lerna run build:publish",
"deploy": "lerna run deploy",
"test": "lerna run test",
"test:integration": "lerna run test:integration",
"lint": "eslint packages --ext .ts,.tsx"
}
}