-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"dependencies": {
"apollo-cache-inmemory": "1.2.6",
"apollo-client": "2.3.7",
"apollo-link": "1.2.2",
"apollo-link-http": "1.5.4",
"apollo-link-state": "0.4.1",
"apollo-server-koa": "1.4.0",
"bcrypt": "3.0.0",
"dayjs": "1.7.4",
"draft-js": "^0.10.5",
"esm": "3.0.72",
"ethers": "^4.0.7",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"graphql-tools": "3.0.5",
"is_js": "0.9.0",
"koa": "2.5.2",
"koa-bodyparser": "4.2.1",
"koa-morgan": "1.0.1",
"koa-passport": "4.1.0",
"koa-router": "7.4.0",
"koa-send": "5.0.0",
"koa-session": "5.8.2",
"koa-static": "5.0.0",
"koa2-cors": "2.0.6",
"lodash": "4.17.10",
"mongoose": "5.2.6",
"nanoid": "^1.1.0",
"nodemailer": "^4.6.7",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemon": "^1.18.3",
"npm": "^6.2.0",
"passport-local": "1.0.0",
"ramda": "^0.25.0",
"rc-steps": "^3.3.0",
"react": "16.4.1",
"react-apollo": "2.1.9",
"react-dom": "16.4.1",
"react-markdown": "^4.0.3",
"react-router-dom": "4.3.1",
"react-router-hash-link": "1.2.0",
"react-scripts": "1.1.4",
"showdown": "^1.9.0",
"styled-components": "3.3.3",
"throttle-debounce": "^2.0.1",
"web3": "^1.0.0-beta.36"
},
"scripts": {
"seed": "node -r esm src/server/seeder.js",
"server": "nodemon src/server/index.js",
"client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"faker": "4.1.0",
"husky": "0.14.3",
"lint-staged": "7.2.0",
"prettier": "1.14.0"
},
"proxy": "http://localhost:3001"
}