-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
54 lines (54 loc) · 1.19 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
{
"scripts": {
"dev": "node server/",
"test": "truffle test",
"build": "next build",
"blockchain": "truffle compile && truffle migrate",
"start": "NODE_ENV=production node server/",
"heroku-postbuild": "next build"
},
"engines": {
"node": "7.10.0"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"inline-json",
{
"matchPattern": "Bookmark"
}
],
"transform-decorators-legacy",
[
"transform-define",
"./env-config.js"
]
]
},
"dependencies": {
"babel-plugin-inline-json": "^1.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-define": "^1.3.0",
"body-parser": "^1.17.2",
"cookie-session": "^1.3.1",
"ethereumjs-testrpc": "^4.1.3",
"express": "^4.15.4",
"grant-express": "^3.8.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"mobx": "^3.3.1",
"mobx-react": "^4.3.3",
"next": "^4.0.3",
"nprogress": "^0.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"truffle": "^3.4.9",
"truffle-contract": "^3.0.0"
},
"devDependencies": {
"mocha": "^3.5.3"
}
}