-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
{
"name": "application",
"version": "0.0.0",
"description": "Monorepo for drups.io application",
"contributors": [
{
"name": "Giorgi Kapanadze",
"email": "[email protected]",
"url": "https://kapo.dev"
}
],
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "husky install",
"dev": "lerna run dev --stream",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --concurrency 4",
"build": "lerna run build --stream",
"clean": "lerna run clean --concurrency 4",
"start": "lerna run start --stream",
"test": "lerna run test --stream"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "14.16.0",
"yarn": "1.22.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com:drupsio/application.git"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"commitlint": "^12.0.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3",
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"ts-jest": "^26.5.4"
}
}