-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "akita-react-hooks-ts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@datorama/akita": "^4.22.1",
"@types/jest": "24.0.11",
"@types/node": "11.11.3",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-markdown": "^5.0.0",
"react-router-dom": "^5.0.1",
"react-scripts": "5.0.0",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.4.0",
"typescript": "3.3.3333"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint -c tslint.json src/**/*.{ts,tsx} && eslint src/**/*.{js,jsx}",
"prettier": "prettier \"**/*.{ts,tsx,scss,css,js,json,md}\" --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.{ts,scss,css,js,json,md}": [
"prettier --write",
"git add"
]
},
"akitaCli": {
"customFolderName": "true",
"isAngular": false,
"basePath": "./src/core/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@datorama/akita-cli": "^3.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-react-hooks": "^1.5.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"tslint": "^5.14.0",
"tslint-config-react-app": "^0.0.0",
"tslint-react": "^3.6.0"
}
}