-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.71 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
{
"name": "stellar-portal",
"version": "0.1.1",
"description": "Decentralized Stellar web client.",
"scripts": {
"dev": "webpack-dev-server --devtool source-map --inline --content-base public --history-api-fallback --config webpack.config.js",
"build": "npm run clean && cross-env NODE_ENV=production webpack --config webpack.config.js",
"server": "node expressProxy",
"lint": "npm run test:lint",
"start": "npm run dev",
"clean": "rm -rf ./build",
"build-electron": "npm run build && cd electron && npm i && npm run build-mac",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint app --fix",
"test:unit": "mocha --compilers js:babel-core/register **/*.specs.js"
},
"author": "ngfar [email protected]",
"repository": "https://github.com/pakokrew/stellar-portal",
"keywords": [
"stellar",
"portal",
"client",
"webapp",
"blockchain",
"decentralized",
"horizon",
"lumens"
],
"license": "MIT",
"devDependencies": {},
"dependencies": {
"@webpack-blocks/babel6": "^0.4.0",
"@webpack-blocks/css-modules": "^0.4.0",
"@webpack-blocks/dev-server2": "^0.4.0",
"@webpack-blocks/extract-text2": "^0.4.0",
"@webpack-blocks/sass": "^0.4.0",
"@webpack-blocks/webpack2": "^0.4.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"clipboard": "^1.5.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.0.0",
"decimal.js": "^7.1.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.0",
"express-http-proxy": "^0.10.1",
"html-webpack-plugin": "^2.22.0",
"intl": "^1.2.5",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"react": "^15.3.2",
"react-addons-create-fragment": "^15.3.2",
"react-click-outside": "^2.2.0",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"react-intl": "^2.1.5",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-devtools": "^3.3.1",
"redux-form": "^6.5.0",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.4",
"semantic-ui-react": "^0.63.1",
"stellar-sdk": "^0.7.2",
"stellar-toolkit": "0.3.6",
"webpack": "^2.2.0",
"webpack-dev-server": "2.2.0"
}
}