-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.96 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "kord-dapp",
"version": "1.0.0",
"description": "Decentralised application for interacting with the KORD Network",
"directories": {
"doc": "doc",
"test": "test"
},
"jest": {
"moduleNameMapper": {
"~(.*)$": "<rootDir>/test/$1"
}
},
"lint-staged": {
"*.js": [
"eslint --fix \"app/**/*.js\"",
"prettier --write --no-semi --single-quote --trailing-comma=es5",
"git add"
]
},
"pre-commit": {
"run": [
"lint:staged",
"test"
],
"silent": true
},
"scripts": {
"lint:staged": "lint-staged",
"build": "webpack --config config/webpack.config.production.js --progress",
"deploy": "npm run build && git push flynn HEAD:master",
"start": "webpack-dev-server --config ./config/webpack.config.development.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kord-network/kord-dapp.git"
},
"keywords": [
"kord",
"dapp"
],
"author": "JAAK Music Ltd. (https://jaak.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kord-network/kord-dapp/issues"
},
"homepage": "https://github.com/kord-network/kord-dapp#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-jaak": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.8",
"flux-standard-action": "^2.0.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.2",
"ignore-loader": "^0.1.2",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.10.2",
"style-loader": "^0.20.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"ethereumjs-util": "^5.1.4",
"ethereumjs-wallet": "^0.6.0",
"farce": "^0.2.5",
"found": "^0.3.8",
"graphiql": "^0.11.11",
"graphql-request": "^1.5.1",
"idb-keyval": "^2.3.0",
"immutable": "^3.8.2",
"jaak-primitives": "^1.0.0-beta",
"kord.js": "^1.0.0-alpha",
"polished": "^1.9.2",
"prop-types": "^15.6.0",
"query-string": "^5.1.0",
"randomstring": "^1.1.5",
"raven-js": "^3.22.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-modal": "^3.3.1",
"react-redux": "^5.0.7",
"react-responsive": "^4.0.4",
"react-transition-group": "^2.2.1",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-immutablejs": "0.0.8",
"redux-logger": "^3.0.6",
"redux-pack": "^0.1.5",
"reselect": "^3.0.1",
"styled-components": "^3.1.6",
"swarm-js": "^0.1.37"
}
}