This repository has been archived by the owner on Apr 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
99 lines (99 loc) · 2.46 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
{
"name": "react-trading-ui",
"version": "0.1.5",
"description": "A set of React components for trading applications",
"keywords": [
"react",
"order book",
"component",
"trading",
"market",
"depth",
"chart"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rongierlach/react-trading-ui.git"
},
"main": "lib/index.js",
"license": "GPL-3.0",
"scripts": {
"start": "webpack-dev-server -d --hot --inline --port 3000 --config webpack.server.babel.js",
"build": "webpack",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run build",
"commit": "git cz",
"lint": "standard | snazzy",
"test": "jest"
},
"pre-commit": [
"lint"
],
"dependencies": {
"glamor": "^2.20.24",
"glamorous": "^3.13.1",
"moment": "^2.18.1",
"numeral": "^2.0.6",
"prop-types": "^15.5.8",
"ramda": "^0.23.0",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-glamorous-displayname": "^1.1.0",
"babel-plugin-ramda": "^1.2.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"file-loader": "^0.11.1",
"immutable": "4.0.0-rc.2",
"immutable-sorted": "^0.1.0",
"immutable-sorted-map": "^0.3.0",
"jest": "^19.0.2",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.5.1",
"react-hot-loader": "^1.3.1",
"react-redux": "^5.0.4",
"react-redux-collect": "^0.2.0",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.1",
"redux-saga": "^0.15.3",
"reselect": "^3.0.0",
"rimraf": "^2.6.1",
"scope-types": "^1.1.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"styled-jsx": "^0.5.7",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-make-rule": "^2.0.0"
},
"peerDependencies": {},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"expect",
"describe"
]
},
"jest": {
"verbose": true
}
}