-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
82 lines (82 loc) · 2.83 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
{
"name": "react-redux-typescript-boilerplate",
"version": "1.0.0",
"description": "React Redux Typescript boilerplate",
"scripts": {
"clean": "rimraf dist coverage",
"lint:css": "stylelint 'src/**/*.tsx'",
"lint:ts": "eslint 'src/**/*.{ts,tsx}'",
"lint": "run-p lint:ts lint:css",
"lint:fix": "run-p 'lint:ts --fix' 'lint:css --fix'",
"test:update": "run-p test:types 'test:jest -- -u'",
"test:watch": "run-p 'test:types -- -w' 'test:jest -- --watch'",
"test:jest": "jest",
"test:types": "tsc",
"test": "run-p test:types test:jest",
"watch": "webpack serve --mode development --config node_modules/@medly/webpack-config",
"dist": "webpack --mode production --progress --config node_modules/@medly/webpack-config",
"dist:analyze": "npm run dist -- --analyze"
},
"author": "Mukul Bansal",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint 'src/**/*.tsx' --fix",
"stylelint 'src/**/*.tsx' --fix"
]
},
"babel": {
"extends": "@medly/babel-config-react"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": "@medly/react"
},
"stylelint": {
"extends": "@medly/stylelint-config"
},
"prettier": "@medly/prettier-config",
"dependencies": {
"@medly-components/core": "^1.54.0",
"@medly-components/forms": "^1.22.2",
"@medly-components/layout": "^1.22.2",
"@medly-components/loaders": "^1.1.1",
"@medly-components/theme": "^1.30.9",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@medly/babel-config-react": "^0.1.4",
"@medly/eslint-config-react": "^0.1.6",
"@medly/jest-config-react": "^0.1.0",
"@medly/prettier-config": "^0.1.1",
"@medly/stylelint-config": "^0.1.2",
"@medly/typescript-config-react": "^0.0.2",
"@medly/webpack-config": "0.1.7",
"@testing-library/react": "^11.2.7",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-mock-store": "^1.0.2",
"@types/styled-components": "^5.1.10",
"axios-mock-adapter": "^1.19.0",
"husky": "4.3.8",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"redux-devtools-extension": "^2.13.9",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2"
}
}