-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bigbutton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx jest",
"build": "npx babel src -d build && npx webpack",
"start": "node build/index.js",
"dev:build": "npx babel -w src -d build &",
"dev:start": "npx nodemon --watch build build/index.js"
},
"keywords": [],
"author": "Grant Harding",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-redis": "^5.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-session": "^1.17.1",
"express-ws": "^4.0.0",
"graphql": "^14.7.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-subscriptions": "^1.1.0",
"graphql-ws": "^3.2.0",
"nanoid": "^3.1.20",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^16.8.0",
"react-media-recorder": "^1.4.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-ssr-prepass": "^1.2.1",
"redis": "^3.0.2",
"sequelize": "^6.3.5",
"urql": "^1.11.5",
"ws": "^7.4.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.3.1",
"webpack-manifest-plugin": "^2.0.4"
}
}