-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "slack-clone-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "node dist/index.js",
"build": "babel src -d dist",
"start": "nodemon --exec babel-node src/index.js",
"test-server": "./reset_test_db.sh; TEST_DB=test_slack babel-node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javenkn/slack-clone-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/javenkn/slack-clone-server/issues"
},
"homepage": "https://github.com/javenkn/slack-clone-server#readme",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"apollo-server": "^2.5.0",
"apollo-server-express": "^2.5.0",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"graphql": "^14.3.1",
"graphql-redis-subscriptions": "^2.1.0",
"graphql-resolvers": "^0.3.3",
"graphql-subscriptions": "^1.1.0",
"ioredis": "^4.9.5",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"merge-graphql-schemas": "^1.5.8",
"nodemon": "^1.19.0",
"pg": "^7.11.0",
"sequelize": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
}
}