-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "eatmybet",
"description": "Backend and contracts for EatMyBet dApp",
"version": "1.0.0",
"repository": "https://github.com/NodeFactoryIo/eatmybet",
"contributors": [
"Belma gutlić <[email protected]",
"Marin Petrunić <[email protected]>"
],
"license": "MIT",
"scripts": {
"init": "npm i runjs babel-core babel-register babel-preset-env",
"dev": "truffle migrate --reset && nodemon -r dotenv/config -r babel-register backend/run.js",
"staging": "node -r dotenv/config -r babel-register backend/run.js",
"prod": "node -r dotenv/config -r babel-register backend/run.js",
"contracts:migrate:ropsten": "truffle migrate --reset --network ropsten",
"test": "mocha --require babel-register --reporter mocha-multi-reporters --reporter-options configFile=mocha-backend-config.json backend/tests/*",
"pretest": "eslint --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore ."
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"memory-cache": "^0.2.0",
"moment": "^2.22.2",
"nodemon": "^1.17.5",
"request": "^2.87.0",
"truffle-contract": "^3.0.5",
"web3": "^0.20.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"runjs": "^4.3.2",
"sinon": "^5.1.1",
"truffle-hdwallet-provider": "0.0.5",
"zeppelin-solidity": "^1.10.0"
},
"babel": {
"presets": [
"es2015"
]
},
"runjs": {
"requires": [
"./node_modules/babel-register"
]
}
}