-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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": "@rogntudju/root",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"homepage": "https://github.com/flegall/rogntudju",
"repository": {
"type": "git",
"url": "https://github.com/flegall/rogntudju.git"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.4",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^16.9.23",
"@types/react-redux": "^7.1.7",
"babel-jest": "^25.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 8.3.0",
"yarn": ">= 1.21.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npm-run-all -p tsc jest",
"jest": "jest --verbose",
"tsc": "tsc",
"prebuild": "yarn test",
"build": "lerna run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run build",
"post-checkout": "yarn",
"post-merge": "yarn"
}
},
"lint-staged": {
"*.{js,jsx,css,md,ts,tsx}": "prettier --write"
}
}