-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
48
49
{
"name": "sklep.typeofweb",
"private": "true",
"scripts": {
"dev": "yarn --frozen-lockfile && lerna bootstrap && lerna run dev --parallel",
"eslint": "yarn lerna run eslint --stream",
"test": "yarn lerna run test --stream",
"test:ci": "yarn lerna run test_:ci --stream",
"tsc": "yarn lerna run tsc --stream"
},
"workspaces": {
"packages": [
"apps/*"
]
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"concurrently": "6.2.0",
"cross-env": "7.0.3",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "3.2.1",
"eslint-plugin-import": "2.23.3",
"husky": "6.0.0",
"lerna": "4.0.0",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"ts-node": "10.0.0",
"typescript": "4.3.2",
"weak-napi": "2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"yarn prettier --write"
],
"*.json,*.md,*.yaml,*.yml": [
"yarn prettier --write"
]
}
}