-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "iov-ponferrada-root",
"private": true,
"description": "IOV Frontend packages",
"homepage": "https://github.com/iov-one/ponferrada",
"bugs": {
"url": "https://github.com/iov-one/ponferrada/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iov-one/ponferrada.git"
},
"license": "Apache-2.0",
"author": "IOV SAS <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"dry-build": "lerna run dry-build --stream",
"build-storybook": "lerna run build-storybook --stream",
"clean": "rm -rf ./packages/*/docs/",
"docs": "lerna run docs",
"format": "lerna run format",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"release": "lerna run build && lerna publish",
"storybook": "lerna run storybook --stream",
"test": "lerna run --concurrency 1 test --stream"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.{ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-storyshots": "^5.3.17",
"@storybook/addon-viewport": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/preset-create-react-app": "^2.0.0",
"@storybook/react": "^5.3.17",
"@types/chrome": "^0.0.82",
"@types/classnames": "^2.2.7",
"@types/jest": "24.0.14",
"@types/material-ui": "^0.21.6",
"@types/node": "12.0.8",
"@types/puppeteer": "^1.13.0",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-redux": "7.1.0",
"@types/react-test-renderer": "^16.9.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"firebase-tools": "^7.7.0",
"history": "^4.7.2",
"husky": "^1.3.1",
"lerna": "^3.20.0",
"lint-staged": "^8.1.4",
"prettier": "^1.19.1",
"shx": "^0.3.2",
"typescript": "~3.7",
"web-ext": "^4.1.0"
}
}