-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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-chat-tutorial",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.0.2",
"@material-ui/icons": "^3.0.1",
"@pusher/chatkit": "^0.7.17",
"axios": "^0.18.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"prop-types": "^15.6.2",
"pusher-chatkit-server": "^0.12.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "1.0.15",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"concurrently": "^3.5.1"
},
"devDependencies": {
"chai": "^4.1.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"start": "concurrently \"node ./server.js\" \"react-scripts start\"",
"build": "react-scripts build",
"test33": "mocha src/**/*.test.js",
"pretest": "npm run lint",
"lint": "./node_modules/.bin/eslint ./src",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}