forked from emersonlaurentino/formal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
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
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"version": "0.0.0",
"homepage": "https://github.com/kevinwolfcr/formal#readme",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"test": "jest",
"prebuild": "yarn workspace @kevinwolf/formal run build",
"build": "yarn workspace @kevinwolf/formal-web run build && yarn workspace @kevinwolf/formal-native run build",
"validate": "yarn build && yarn lint && yarn test --silent --coverage",
"prerelease": "yarn build",
"release": "dotenv lerna publish",
"setup": "yarn install && yarn validate",
"start:web": "concurrently \"yarn build --watch\" \"yarn workspace @kevinwolf/formal-playground-web start\"",
"start:native": "concurrently \"yarn build --watch\" \"yarn workspace @kevinwolf/formal-playground-native start\""
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.0",
"@types/react": "^16.8.11",
"@types/yup": "^0.26.12",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"codecov": "^3.3.0",
"concurrently": "^4.1.0",
"doctoc": "^1.4.0",
"dotenv-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^1.3.1",
"jest": "^24.7.0",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"resolutions": {
"@storybook/addon-actions/react": "^16.8.6",
"@storybook/components/react": "^16.8.6",
"@storybook/ui/react": "^16.8.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"packages/**/src/**/*.{ts,tsx}"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"README.md": [
"doctoc"
],
"docs/*.md": [
"doctoc"
],
"**/*.md": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}