-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
90 lines (90 loc) · 2.85 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
{
"name": "lykke-exchange-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@lykkecity/react-components": "0.9.9",
"@lykkex/lykke.js": "0.4.15",
"@lykkex/subzero": "^0.0.4",
"@lykkex/subzero-wamp": "^0.0.10",
"@types/autobahn": "^0.9.39",
"@types/js-cookie": "^2.2.5",
"@types/qs": "^6.9.0",
"@types/react-copy-to-clipboard": "^4.2.3",
"@types/react-infinite-scroller": "^1.0.6",
"@types/react-intl": "^2.3.5",
"@types/yup": "^0.24.1",
"autobahn": "^18.3.2",
"big.js": "^5.2.2",
"classnames": "^2.2.5",
"formik": "^0.11.11",
"js-cookie": "^2.2.1",
"mobx": "^3.3.0",
"mobx-react": "^4.3.2",
"numeral": "^2.0.6",
"promise.prototype.finally": "^3.1.0",
"qrcode.react": "^0.8.0",
"qs": "^6.9.1",
"react": "^16.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.0.0",
"react-gtm-module": "^2.0.2",
"react-infinite-scroller": "^1.1.4",
"react-intl": "^2.4.0",
"react-launch-darkly": "^1.4.0",
"react-router-dom": "^4.2.2",
"react-scripts-ts": "2.8.0",
"react-select": "^1.0.0-rc.10",
"react-text-mask": "^5.0.2",
"react-webcam": "^4.0.0",
"sha.js": "^2.4.9",
"socket-connection": "^1.1.1",
"socket-connection-wamp": "^1.1.4",
"text-mask-addons": "^3.7.1",
"url-search-params-polyfill": "^4.0.0",
"uuid": "^3.1.0",
"wretch": "^1.0.0",
"yup": "^0.24.1"
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-ts": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-ts",
"build": "npm run build-css && react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom --moduleNameMapper='{\"^@lykkex/lykke.js\":\"<rootDir>/node_modules/@lykkex/lykke.js/dist\"}'",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/jest": "^21.1.1",
"@types/node": "^8.0.31",
"@types/numeral": "^0.0.22",
"@types/promise.prototype.finally": "^2.0.2",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.18",
"@types/react-copy-to-clipboard": "^4.2.3",
"@types/react-dom": "^16.0.2",
"@types/react-router-dom": "^4.0.8",
"@types/react-select": "^1.0.59",
"@types/uuid": "^3.4.3",
"@types/webpack-env": "^1.13.3",
"LykkeFramework": "^0.4.17",
"compass-mixins": "0.12.10",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"mobx-persist": "^0.4.1",
"node-sass-chokidar": "^2",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.0",
"tslint-config-prettier": "^1.5.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,scss,sass}": [
"prettier --write",
"git add"
],
"src/**/*.{ts,tsx}": "tslint --fix"
}
}