forked from srtucker22/chatty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "chatty",
"description": "A WhatsApp clone with React Native and Apollo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/srtucker22/chatty.git",
"author": "Simon Tucker <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon --watch server --watch package.json --watch .env server/index.js --exec babel-node --presets es2015,stage-2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"apollo-upload-server": "^2.0.2",
"aws-sdk": "^2.75.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"dataloader": "^1.3.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"faker": "^4.1.0",
"graphql": "^0.10.1",
"graphql-date": "^1.0.3",
"graphql-server-express": "^1.1.0",
"graphql-subscriptions": "^0.4.4",
"graphql-tools": "^1.0.0",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"mime-types": "^2.1.15",
"node-fetch": "^1.7.1",
"optics-agent": "^1.1.4",
"sequelize": "^4.4.2",
"sqlite3": "^3.1.8",
"subscriptions-transport-ws": "^0.8.2",
"uuid": "^3.1.0"
}
}