-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "link_mgr",
"version": "1.0.0",
"description": "Link mgr app for Supergroup test",
"main": "index.js",
"scripts": {
"dev": "nodemon ./server/app.js",
"build": "next build",
"fix": "standard --fix",
"start": "node ./server/app.js",
"test": "standard"
},
"standard": {
"parser": "babel-eslint"
},
"author": "Efosa Oyegun",
"license": "ISC",
"dependencies": {
"apollo-boost": "^0.3.1",
"apollo-link": "^1.2.11",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-server-express": "^2.4.8",
"apollo-utilities": "^1.2.1",
"babel-eslint": "^10.0.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"graphql": "^14.2.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"nanoid": "^2.0.1",
"next": "^8.0.4",
"next-routes": "^1.4.2",
"react": "^16.8.6",
"react-apollo": "^2.5.4",
"react-dom": "^16.8.6",
"semantic-ui-react": "^0.86.0",
"standard": "^12.0.1",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"nodemon": "^1.18.10"
}
}