-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "chatty",
"description": "A WhatsApp clone with React Native and Apollo",
"private": true,
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/srtucker22/chatty.git",
"author": "Simon Tucker <srtucker22@gmail.com>",
"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": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"apollo-server-express": "^1.3.2",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"faker": "^4.1.0",
"graphql": "^0.12.3",
"graphql-date": "^1.0.3",
"graphql-subscriptions": "^0.5.6",
"graphql-tools": "^2.18.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"sequelize": "^4.4.2",
"sqlite3": "^3.1.8",
"subscriptions-transport-ws": "^0.9.5"
}
}