-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"prepare": "node ./tsconfig-references.js && husky install",
"build": "yarn workspaces run build",
"lint": "eslint \"./packages/*/src/**/*.{ts,tsx}\" --max-warnings=0 --fix",
"test": "cross-env TZ=Europe/Helsinki NODE_ICU_DATA=node_modules/full-icu yarn jest --coverage",
"test:local": "cross-env TZ=Europe/Helsinki NODE_ICU_DATA=node_modules/full-icu IS_LOCAL_DEVELOPMENT=true yarn jest --coverage",
"playwright:install": "npx playwright install"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.23.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "4.2.3"
},
"dependencies": {
"full-icu": "^1.5.0"
},
"lint-staged": {
"**/*.ts": [
"eslint --cache --fix",
"git add"
]
}
}