-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.04 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
{
"name": "chatty",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon --watch server --watch package.json server/index.js --exec babel-node --presets es2015,stage-2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.16.1",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"express-jwt": "^5.3.0",
"faker": "^4.1.0",
"graphql": "^0.9.1",
"graphql-date": "^1.0.3",
"graphql-server-express": "^0.7.1",
"graphql-subscriptions": "^0.3.1",
"graphql-tools": "^0.11.0",
"jsonwebtoken": "^7.4.0",
"lodash": "^4.17.4",
"sequelize": "^3.30.2",
"sqlite3": "^3.1.8",
"subscriptions-transport-ws-authy": "^0.5.5"
}
}