-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.75 KB
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
{
"name": "moonlight",
"version": "0.0.1",
"description": "A reactive data-store for eosjs and smart contracts",
"main": "./dist/moonlight.js",
"scripts": {
"build": "webpack --config webpack/release.config.js",
"build:pure": "webpack --config webpack/pure.config.js",
"dev": "webpack --config webpack.config.js --watch",
"format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codepark-team/moonlight.git"
},
"keywords": [
"eos",
"eosjs",
"redux",
"redux-saga",
"smart contract"
],
"author": "pony <13500815917@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codepark-team/moonlight/issues"
},
"homepage": "https://github.com/codepark-team/moonlight#readme",
"dependencies": {
"deepmerge": "^2.1.1",
"eosjs": "^16.0.9",
"is-plain-object": "^2.0.4",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"scatterjs-core": "^2.7.16",
"scatterjs-plugin-eosjs": "^1.5.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-jest": "^22.1.2",
"ganache-core": "^2.3.3",
"jest": "^24.1.0",
"prettier-standard": "^8.0.1",
"standard": "^11.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
}
}