-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "react-chat",
"version": "0.1.0",
"private": true,
"homepage": "http://dogecodes.github.io/react-chat",
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^1.0.0-beta.33",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.20.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewire-polyfills": "^0.2.0",
"react-app-rewired": "^1.5.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"socket.io-client": "^2.0.4",
"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 '**/*.{js,json}'",
"deploy":
"npm run build && gh-pages -d build -m \"Updated at $(date +'%a, %d %b %Y, %T, %Z')\" --add",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier-eslint-cli": "^4.7.1",
"react-test-renderer": "^16.2.0"
},
"lint-staged": {
"**/*.js": ["npm run lint:fix", "npm run format", "git add"],
"**/*.json": ["npm run format", "git add"]
}
}