forked from aruzikulov/platform-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.13 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
{
"name": "@neufund/shared-utils",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"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": "TS_NODE_PROJECT=tsconfig.spec.json mocha --require ts-node/register/transpile-only --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"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@types/jstimezonedetect": "^1.0.1",
"bignumber.js": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"ethers": "^4.0.45",
"jsdom": "^16.2.2",
"lolex": "^5.1.1",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"react-intl": "^2.4.0",
"react-intl-phraseapp": "^0.2.4",
"recompose": "^0.30.0",
"sinon": "^7.3.1",
"sinon-chai": "^3.2.0",
"moment": "^2.21.0",
"ts-node": "6.2.0",
"tslib": "^1.10.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.3",
"typestrict": "^1.0.2"
},
"peerDependencies": {
"bignumber.js": "^5.0.0",
"react-intl": "^2.4.0",
"react-intl-phraseapp": "^0.2.4",
"lodash": "^4.17.11",
"moment": "^2.21.0",
"recompose": "^0.30.0",
"tslib": "^1.10.0"
},
"dependencies": {
"jstimezonedetect": "^1.0.6"
}
}