forked from stellarguard/stellarguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.31 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
{
"name": "stellarguard",
"version": "1.38.0",
"main": "index.js",
"repository": "https://github.com/pselden/stellarguard.git",
"author": "Paul Selden <[email protected]>",
"license": "none",
"private": true,
"engines": {
"node": "10.x"
},
"dependencies": {
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"@sendgrid/mail": "^6.3.1",
"@stellarguard/multisig-utils": "^0.4.0",
"@stellarguard/stellar-uri": "^0.2.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.1",
"classnames": "^2.2.6",
"connect-pg-simple": "^5.0.0",
"constellation-api": "johansten/constellation-api",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"cryptr": "^2.0.0",
"csurf": "^1.9.0",
"debug": "~3.1.0",
"dotenv": "^6.0.0",
"dumb-passwords": "^0.2.1",
"ejs": "~2.6.1",
"express": "^4.16.2",
"express-csp-header": "^2.2.0",
"express-session": "^1.15.6",
"formik": "^0.11.3",
"googleapis": "^32.0.0",
"helmet": "^3.12.1",
"history": "^4.7.2",
"lodash.camelcase": "^4.3.0",
"lodash.capitalize": "^4.2.1",
"lodash.isempty": "^4.4.0",
"lodash.map": "^4.6.0",
"lodash.remove": "^4.7.0",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"morgan": "~1.9.0",
"ms": "^2.1.1",
"nodemailer": "^4.6.7",
"otplib": "^10.0.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-error-constants": "^1.0.0",
"qrcode": "^1.2.0",
"react": "^16.4.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"serve-favicon": "~2.5.0",
"sinon": "^6.1.4",
"stellar-hd-wallet": "^0.0.6",
"stellar-sdk": "^0.11.0",
"yup": "^0.25.1"
},
"scripts": {
"start": "NODE_PATH=src/shared node ./src/server/bin/www",
"deploy:test": "node ./scripts/deploy test",
"deploy:prod": "node ./scripts/deploy prod",
"deploy:dry": "DRY_RUN=1 node ./scripts/deploy test",
"dev": "source .env.dev && NODE_PATH=src/shared supervisor -w src/ -i src/ui ./src/server/bin/www",
"run-job": "NODE_PATH=src/shared node ./src/jobs/run",
"watch": "parcel watch src/ui/index.html",
"console": "source .env.dev && DEV_MODE=1 NODE_PATH=src/shared node",
"cypress": "cypress open",
"test": "ava"
},
"devDependencies": {
"autoprefixer": "^8.6.5",
"ava": "0.25.0",
"babel-eslint": "^8.2.5",
"babel-plugin-direct-import": "^0.5.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cypress": "^3.0.2",
"db-migrate-pg": "^0.4.0",
"eslint": "^4.19.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"mobx-react-devtools": "^4.2.15",
"parcel-bundler": "^1.9.7",
"postcss-modules": "^1.1.0",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0"
}
}