forked from aruzikulov/platform-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.83 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
{
"name": "@neufund/shared-modules",
"version": "1.0.0",
"main": "dist/index.js",
"sideEffects": false,
"types": "dist/index.d.ts",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"format": "prettier --list-different '**/*.{ts,tsx,js,json,md,gql}'",
"format:fix": "prettier --write '**/*.{ts,tsx,js,json,md,gql}'",
"lint": "concurrently -p \"[{name}]\" -n \"TSLINT/PRETTIER,TSC\" -c \"bgYellow.bold,bgMagenta.bold\" \"yarn tslint && yarn format\" \"yarn tsc\"",
"lint:fix": "concurrently -p \"[{name}]\" -n \"TSLINT/PRETTIER,TSC\" -c \"bgYellow.bold,bgMagenta.bold\" \"yarn tslint:fix && yarn format:fix\" \"yarn tsc\"",
"prepare": "yarn build",
"start": "tsc --watch",
"test": "NF_MOCHA_RUN=1 TS_NODE_PROJECT=tsconfig.spec.json mocha --require ts-node/register/transpile-only --require jsdom-global/register --require './config/setupTests.ts' './src/**/*.spec.ts?(x)'",
"test:watch": "yarn test --watch --watch-extensions ts,tsx",
"tsc": "tsc --noEmit",
"tslint": "tslint --project ./tsconfig.json --format stylish",
"tslint:fix": "yarn tslint --fix"
},
"dependencies": {
"crypto-random-string": "^3.0.1",
"promise-all": "^1.0.0",
"proper-url-join": "^1.2.0",
"web3-utils": "^1.2.4"
},
"devDependencies": {
"@neufund/sagas": "^1.0.0",
"@neufund/shared-utils": "^1.0.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/react-redux": "^6.0.11",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@types/yup": "^0.26.0",
"@types/jsdom": "^12.2.3",
"@types/query-string": "^6.1.1",
"bignumber.js": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"connected-react-router": "6.2.2",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"redux": "^4.0.5",
"sinon": "^7.3.1",
"react-redux": "^6.0.0",
"fetch-mock": "^6.0.0",
"sinon-chai": "^3.2.0",
"ts-node": "6.2.0",
"eth-lightwallet": "https://github.com/Neufund/eth-lightwallet#eb174e6831d3b62adfde396f26d15c1b7e1ab30f",
"web3-utils": "^1.2.4",
"types-ethereumjs-util": "^0.0.5",
"ethereumjs-util": "^5.1.4",
"eth-sig-util": "^1.4.2",
"re-reselect": "^3.4.0",
"tslib": "^1.10.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.3",
"typestrict": "^1.0.2",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"yup": "^0.26.7"
},
"peerDependencies": {
"@neufund/sagas": "^1.0.0",
"@neufund/shared-utils": "^1.0.0",
"bignumber.js": "^5.0.0",
"moment": "^2.21.0",
"redux": "^4.0.5",
"tslib": "^1.10.0",
"query-string": "^6.2.0",
"react-redux": "^6.0.0",
"inversify": "^4.10.0",
"reselect": "^4.0.0",
"lodash": "^4.17.11",
"yup": "^0.26.7"
}
}