-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.07 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "livestream-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.9",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"fg-loadcss": "^2.1.0",
"flv.js": "^1.5.0",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-form": "^8.3.3",
"redux-thunk": "^2.3.0"
},
"scripts": {
"lint:scss": "stylelint 'src/*.scss' --syntax scss",
"lint:scss:fix": "stylelint 'src/**/*.scss' --syntax scss --fix",
"lint:js": "eslint . --ext .js,.jsx",
"lint:js:fix": "npm run lint:js -- --fix",
"format": "prettier --write '**/*.{js,md,scss,css}'",
"format:diff": "prettier --list-different '**/*.{js,md,scss}'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"git add"
],
"*.+(js|scss|json|css|md)": [
"yarn run format",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"commitlint": "^8.3.5",
"cross-env": "^5.2.0",
"eslint": "6.x",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsdoc": "^8.6.0",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"husky": "^1.3.1",
"jest": "^24.8.0",
"jest-circus": "^24.8.0",
"jest-junit": "^6.4.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"sass": "^1.19.0",
"stylelint": "^10.1.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.8.0",
"typescript": "^3.7.5"
}
}