-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.51 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
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"description": "Ready to go monorepo frontend boilerplate for web and mobile app development. Realized with react, redux and redux-saga. Written in TypeScript.",
"author": "Marcel Fischer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/inkognitro/react-redux-saga-boilerplate.git"
},
"private": true,
"workspaces": {
"packages": [
"src/packages",
"src/web-app"
]
},
"scripts": {
"start:spa": "cd src/web-app && yarn run start",
"start:android": "cd src/mobile-app && yarn run android",
"tsc": "lerna run tsc --stream",
"test": "lerna run test --stream",
"test:coverage": "lerna run test:coverage --stream",
"lint": "eslint ./src --ext .ts,.tsx",
"lint:fix": "tsc && eslint ./src --ext .ts,.tsx --quiet --fix",
"ci": "lerna run test:coverage --stream && yarn run lint:fix && lerna run build --stream"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"lerna": "^3.22.1",
"prettier": "~2.1.1",
"typescript": "^4.0.2"
}
}