-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "neo-explorer",
"version": "1.0.0",
"description": "NEO/GAS blockchain explorer",
"main": "index.js",
"repository": "https://github.com/mhuggins/neo-explorer",
"author": "Matt Huggins <[email protected]>",
"license": "MIT",
"engines": {
"node": "8.2.1",
"npm": "5.3.0",
"yarn": "0.27.5"
},
"scripts": {
"heroku-postbuild": "yarn run build",
"clean": "rm -rf ./build",
"build:web": "razzle build",
"build:sync": "webpack --config sync.config.js --display-error-details",
"build": "yarn run clean && yarn run build:web && yarn run build:sync",
"test": "razzle test --env=jsdom",
"start": "nf start --procfile Procfile.dev",
"start:web": "razzle start",
"start:sync": "node runner.js ./src/sync/index.js",
"start:web:prod": "NODE_ENV=production node build/server.js",
"start:sync:prod": "NODE_ENV=production node ./build/sync.js",
"script": "node runner.js",
"migrate:up": "node runner.js ./scripts/migrate.js up",
"migrate:down": "node runner.js ./scripts/migrate.js down"
},
"dependencies": {
"apollo-local-query": "^0.3.0",
"async": "^2.5.0",
"autoprefixer": "^7.1.3",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-react-display-name": "^6.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"bignumber.js": "^4.0.4",
"classnames": "^2.2.5",
"compression": "^1.7.0",
"express": "^4.15.3",
"express-graphql": "^0.6.11",
"express-rate-limit": "^2.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"foreman": "^2.0.0",
"graphql": "^0.11.3",
"graphql-bigint": "^1.0.0",
"graphql-iso-date": "^3.3.0",
"ioredis": "^3.2.1",
"is-heroku": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"neo-api": "^1.0.1",
"node-sass": "^4.5.3",
"numeral": "^2.0.6",
"pg": "6.4.2",
"prop-types": "^15.5.10",
"razzle": "^0.8.2",
"razzle-heroku": "^2.0.0",
"react": "^15.6.1",
"react-apollo": "^1.4.15",
"react-document-title": "^2.0.3",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2",
"react-timeago": "^3.4.3",
"react-toggle": "^4.0.2",
"recharts": "^1.0.0-beta.1",
"recompose": "^0.25.0",
"sass-loader": "^6.0.6",
"sequelize": "^4.13.8",
"serialize-javascript": "^1.4.0",
"svg-inline-loader": "^0.8.0",
"umzug": "^2.0.1",
"webpack": "^3.4.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.3.0",
"quick-local-ip": "^1.0.7",
"webpack-to-memory": "^1.0.0"
}
}