forked from decentraland/marketplace-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.6 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
{
"name": "marketplace",
"version": "1.19.1",
"description": "Decentraland's LAND Marketplace",
"main": "src/server.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix .",
"test": "./node_modules/mocha/bin/mocha -r babel-register -r specs/specs_setup.js specs/setup.js src/**/*.spec.js src/**/**/*.spec.js shared/**/*.spec.js",
"watch:test": "./node_modules/mocha/bin/mocha -r babel-register -r specs/specs_setup.js specs/setup.js src/*.spec.js src/**/*.spec.js --watch",
"init-db": "./scripts/initDb.js",
"restore-dump": "./scripts/restoreDump.js",
"migrate": "./migrations/migrate",
"renew-blockchain-data": "./scripts/renewBlockchainData.js",
"seed": "./scripts/seed.js",
"translate": "./scripts/translate.js && prettier ./src/Translation/locales/*.json --write",
"tag": "./scripts/tag.js",
"monitor-blockchain": "./monitor/program.js index",
"sanity-check": "./sanity/program.js run",
"cli": "./scripts/mktcli.js",
"build": "npm run lint && npm run test",
"build:ci": "npm run migrate up && npm run build",
"start": "cd src && babel-node server.js",
"dev": "nodemon --exec npm run start"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/marketplace.git"
},
"keywords": [
"decentraland",
"marketplace",
"dapp"
],
"author": "Decentraland",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"bignumber.js": "^5.0.0",
"body-parser": "^1.18.2",
"canvas": "^2.0.0-alpha.12",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"decentraland-commons": "^5.1.0",
"decentraland-eth": "^8.16.1",
"decentraland-server": "^2.2.0",
"eslint": "4.10.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"eth-connect": "^4.0.1",
"ethereumjs-abi": "^0.6.5",
"express": "^4.16.2",
"faker": "^4.1.0",
"flat": "^4.0.0",
"inquirer": "^5.2.0",
"mocha": "^4.0.1",
"newrelic": "^4.8.0",
"node-pg-migrate": "^2.23.0",
"prettier": "1.12.1",
"sinon": "^5.0.3",
"truffle-hdwallet-provider": "^1.0.16",
"uuid": "^3.1.0",
"websocket": "^1.0.28"
},
"devDependencies": {
"nodemon": "^1.14.11",
"progress": "^2.0.0"
}
}