-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.4 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "francesco.sullo.co",
"version": "0.1.0",
"license": "MIT",
"main": "index.js",
"author": "Francesco Sullo <[email protected]>",
"homepage": "https://francesco.sullo.co",
"scripts": {
"start": "node .",
"test": "export NODE_ENV=test && istanbul cover ./node_modules/.bin/_mocha test/unit/**/*.js test/unit/*.js",
"posttest": "istanbul check-coverage --statements 85 --branches 85 --functions 85 --lines 85",
"build": "webpack && bin/post-build.sh",
"dev": "npm run build && export NODE_ENV=development && source .default.env &&node . --redis-local",
"local": "npm run build && docker/dev.sh",
"go": "git pull && npm run build && docker/node.sh"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.18.3",
"chalk": "^4.1.0",
"cookie-parser": "~1.4.3",
"express": "^4.16.3",
"fs-extra": "^4.0.1",
"history": "^4.7.2",
"lodash": "^4.17.20",
"react-markdown": "^5.0.3",
"react-password-strength-bar": "^0.3.2",
"signauth": "~0.1.2",
"sqlite3": "^5.0.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.9.0",
"eslint": "^7.2.0",
"eslint-plugin-react": "^7.20.0",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"old-dependencies": {
"append-stream": "^1.2.2",
"aws-sdk": "^2.110.0",
"bignumber.js": "^7.2.1",
"bluebird": "^3.5.0",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.4.3",
"credits": "^2.1.0",
"cron": "^1.2.1",
"cross-env": "^1.0.8",
"debug": "~2.6.3",
"email-validator": "^1.1.1",
"eth-sig-util": "^1.4.2",
"ethereum-ens": "^0.7.4",
"expect": "^1.20.1",
"express": "^4.16.3",
"fs-extra": "^4.0.1",
"history": "^4.7.2",
"i18next": "^11.3.2",
"install": "^0.10.4",
"local-storage": "^1.4.2",
"lodash": "^4.17.10",
"log": "^1.4.0",
"moment-timezone": "^0.5.13",
"morgan": "^1.9.1",
"node-libs-browser": "^1.0.0",
"rc-slider": "^8.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-i18next": "^7.6.1",
"react-modal": "^3.4.4",
"react-scroll": "^1.7.6",
"redis": "^2.7.1",
"rotating-file-stream": "^1.2.2",
"say": "^0.11.0",
"sleep": "^5.1.1",
"superagent": "^3.5.2",
"tweedentity": "^0.2.4",
"url-parse": "^1.4.4",
"web3": "^0.20.4"
},
"old-devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"css-loader": "^0.28.11",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"react-transform-hmr": "^1.0.4",
"sinon": "^2.4.1",
"supertest": "^3.0.0",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^3.1.10",
"webpack-hot-middleware": "^2.11.0"
}
}