-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "cinimod",
"version": "1.0.0-alpha.0",
"description": "",
"license": "MIT",
"private": true,
"repository": "mkny/cinimod",
"author": {
"name": "Marcony Neves",
"email": "[email protected]",
"url": "https://cinimod.es"
},
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "lerna run test --parallel -- --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/types": "^17.0.0",
"@types/lodash.get": "^4.4.6",
"@types/lodash.map": "^4.6.13",
"@types/lodash.reduce": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/react": "^17.0.14",
"@types/react-native": "^0.64.12",
"@types/styled-components": "^5.1.11",
"@types/styled-components-react-native": "^5.1.1",
"@types/styled-system": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "~0.63.4",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.3.0",
"typescript": "~4.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pretty-quick --staged",
"yarn lint --fix"
]
},
"dependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0"
}
}