-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.98 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
{
"name": "@devery/devery",
"version": "0.3.11",
"description": "Build decentralised apps on the Devery Protocol using Javascript.",
"main": "./dist/index.js",
"scripts": {
"start": "nodemon server.js",
"debug": "nodemon --inspect server.js",
"test": "truffle test --compile-none",
"test2": "truffle test --compile-none test/deveryNFTTracker.js",
"coverage": "cross-env NODE_ENV=test nyc truffle test --compile-none && nyc report --reporter=text-lcov",
"generate-doc": "jsdoc --configure .jsdoc.json --verbose",
"lint": "eslint devery/**/*.js test/**/*.js",
"lint:fix": "eslint devery/**/*.js test/**/*.js --fix",
"lint:watch": "esw devery/**/*.js test/**/*.js --watch",
"inch": "inchjs suggest devery/",
"compile": "truffle compile --config truffle.v5.js && truffle compile --config truffle.v4.js",
"compile:force": "mkdir tmp && mv ./contracts/V6 ./tmp/V6 && truffle compile --config truffle.v4.js && mv ./contracts/V4 ./tmp/V4 && mv ./tmp/V6 ./contracts/V6 && truffle compile --config truffle.v5.js && mv ./tmp/V4 ./contracts/V4 && rm -rf tmp && truffle migrate --compile-none",
"compile:v5": "truffle compile --config truffle.v5.js",
"compile:v4": "truffle compile --config truffle.v4.js",
"build": "webpack",
"migrate": "truffle migrate --compile-none"
},
"author": "Victor Eloy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devery/deveryjs"
},
"nyc": {
"include": [
"devery"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"lcov",
"html"
]
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"coveralls": "^3.0.2",
"cross-env": "^5.1.4",
"css-loader": "^0.26.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"eslint-watch": "^3.1.4",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"jsdoc-template-devery": "git+https://github.com/victorrseloy/jsdoc-template-devery.git",
"json-loader": "^0.5.4",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.7.1",
"style-loader": "^0.13.1",
"truffle-contract": "^1.1.11",
"tui-jsdoc-template": "^1.2.2",
"web3": "^1.0.0-beta2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"body-parser": "^1.18.2",
"cross-fetch": "^2.2.2",
"crypto-js": "^3.1.9-1",
"ethers": "^4.0.37",
"inchjs": "^0.4.1",
"truffle": "^5.3.14",
"xhr2": "^0.2.0",
"xmlhttprequest": "^1.8.0"
}
}