forked from Doichain/dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 4.57 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
{
"name": "doichain-dApp",
"private": true,
"version": "0.0.9",
"scripts": {
"start": "meteor run",
"lint": "eslint .",
"pretest": "npm run lint --silent",
"selenium": "MOCHA_GREP=selenium TEST_BROWSER_DRIVER=chrome meteor test --once --full-app --driver-package meteortesting:mocha --port 3001 --settings contrib/settings/ettings-regtest.json",
"selenium-regtest": "MOCHA_GREP=selenium TEST_BROWSER_DRIVER=chrome meteor test --once --driver-package meteortesting:mocha --port 3001 --settings contrib/settings/settings-regtest.json",
"mocha": "MONGO_URL=mongodb://mongo:27017/alice MOCHA_GREP=basic-doi-test TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha --port 3000 --settings contrib/settings/settings-jenkins-regtest.json",
"test-mocha-docker": "export MONGO_URL=mongodb://mongo:27017/alice;export MOCHA_GREP=basic-doi-test;meteor test --full-app --once --driver-package meteortesting:mocha --port 3000 --settings contrib/settings/settings-jenkins-regtest.json",
"regtest-alice": "MONGO_URL=mongodb://localhost:28017/alice MOCHA_GREP=basic-doi-test meteor test --full-app --once --driver-package meteortesting:mocha --port 3000 --settings contrib/settings/settings-alice.json",
"regtest-nico": "MONGO_URL=mongodb://mongo:27017/alice MOCHA_GREP=nico-doi-tests TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha --port 3000 --settings contrib/settings/settings-jenkins-regtest.json",
"testnet": "echo 'please create secure tunnel (forward) local port 3005 to remote port as written in settings.json (e.g.4010)';MONGO_URL=mongodb://doichain:secret@localhost:27017/admin meteor --settings contrib/settings/settings-testnet.json --port 3005",
"test-testnet-jenkins": "MOCHA_GREP=basic-doi-test MOCHA_GREP=testnet-doi-test-01 meteor test --full-app --once --driver-package meteortesting:mocha --port 4010",
"test-chrome": "TEST_BROWSER_DRIVER=chrome meteor test --once --driver-package meteortesting:mocha --port 3100",
"test-app-chrome": "TEST_BROWSER_DRIVER=chrome meteor test --full-app --once --driver-package meteortesting:mocha --port 3100",
"test-phantom": "TEST_BROWSER_DRIVER=phantomjs meteor test --once --driver-package meteortesting:mocha",
"test-app-phantom": "TEST_BROWSER_DRIVER=phantomjs meteor test --full-app --once --driver-package meteortesting:mocha",
"test-watch": "TEST_BROWSER_DRIVER=chrome TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"test-app-watch": "TEST_BROWSER_DRIVER=chrome TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"test-watch-browser": "TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"test-app-watch-browser": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor",
"env": {
"meteor": true,
"mongo": true,
"browser": true,
"node": true,
"mocha": true
},
"cliOptions": {
"exclude": [
"node_modules",
"packages"
]
}
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"bcrypt": ">=5.0.0",
"doichain": "0.1.3",
"history": "^4.9.0",
"invariant": "^2.2.4",
"match-sorter": "^4.0.1",
"meteor-node-stubs": "^0.3.3",
"mui-datatables": "^2.4.0",
"proptypes": "^1.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight": "^0.12.0",
"react-meteor-hooks": "^0.3.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.4.3",
"react-table": "^7.0.0-alpha.30",
"simpl-schema": "^1.5.5",
"styled-components": "^4.3.2",
"useragent": "^2.3.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-date-string": "^0.1.0",
"chai-datetime": "^1.5.0",
"chromedriver": "^2.46.0",
"emailjs-mime-codec": "^2.0.8",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-jss": "^3.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.13.0",
"execa": "^1.0.0",
"geckodriver": "^1.19.1",
"poplib": "^0.1.7",
"promise": "^8.1.0",
"selenium-webdriver": "^3.6.0"
}
}