-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.11 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.11 KB
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
{
"name": "coolChat",
"version": "1.0.0",
"description": "chat for cool kids",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"dev": "webpack-dev-server --hot --mode development",
"start": "nodemon server/server.js",
"prestart": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spincycle01/coolChat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spincycle01/coolChat/issues"
},
"homepage": "https://github.com/spincycle01/coolChat#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0",
"react-test-renderer": "^16.8.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"apollo-boost": "^0.3.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-link": "^1.2.11",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"apollo-utilities": "^1.2.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"graphql": "^14.1.0",
"graphql-js-client": "^0.11.0",
"graphql-tag": "^2.10.1",
"pg": "^7.9.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^2.5.3",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"subscriptions-transport-ws": "^0.9.16"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}