-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.51 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
{
"name": "ujo.js",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "lerna run lint",
"test": "npm run build && lerna run test",
"install": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run --parallel build -- -- --watch",
"build:docs": "lerna run build:docs",
"compile": "lerna run compile",
"execute": "npm run build && node packages/core/dist",
"clean-contracts": "rm -rf packages/contracts-oracle/build && rm -rf packages/contracts-badges/build && rm -rf packages/contracts-licensing/build",
"compile-oracle": "cd packages/contracts-oracle && truffle compile",
"compile-badges": "cd packages/contracts-badges && truffle compile",
"compile-licensing": "cd packages/contracts-licensing && truffle compile",
"compile-contracts": "npm run compile-oracle && npm run compile-badges && npm run compile-licensing",
"migrate-oracle": "cd packages/contracts-oracle && truffle migrate",
"migrate-badges": "cd packages/contracts-badges && truffle migrate",
"migrate-licensing": "cd packages/contracts-licensing && truffle migrate",
"migrate-contracts": "npm run migrate-oracle && npm run migrate-badges && npm run migrate-licensing",
"ganache": "ganache-cli -i 1234 -m='oyster virtual frown glove protect elder bottom organ axis replace project sweet'",
"migrate": "npm run clean-contracts && npm run compile-contracts && npm run migrate-contracts"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"jsdoc": "^3.5.5",
"lerna": "^3.10.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "1.15.3",
"push-dir": "^0.4.1",
"sinon": "^7.2.3",
"truffle": "^5.0.3"
}
}