-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "dogecodes-react-chat",
"description": "React/Redux based chat",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/icons": "^1.0.0-beta.43",
"classnames": "^2.2.5",
"date-fns": "^1.29.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"final-form": "^4.6.1",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^1.0.0-beta.45",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewire-polyfills": "^0.2.0",
"react-dom": "^16.3.2",
"react-final-form": "^3.4.2",
"react-notification-system": "^0.2.17",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"socket.io-client": "^2.1.1",
"typeface-roboto": "0.0.54"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"format": "prettier-eslint --write 'src/**/*.{js,json}'",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"faker": "^4.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"prettier-eslint-cli": "^4.7.1",
"react-app-rewired": "^1.5.2",
"redux-saga-test-plan": "^3.7.0"
},
"lint-staged": {
"**/*.js": [
"npm run lint:fix",
"npm run format",
"git add"
],
"**/*.json": [
"npm run format",
"git add"
]
}
}