forked from aruzikulov/platform-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "@neufund/sagas",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"private": false,
"scripts": {
"build": "tsc",
"format": "prettier --list-different '**/*.{ts,tsx,js,json,md,gql}'",
"format:fix": "prettier --write '**/*.{ts,tsx,js,json,md,gql}'",
"lint": "yarn tslint && yarn format && yarn tsc",
"lint:fix": "yarn tslint:fix && yarn format:fix && yarn tsc",
"prepare": "yarn build",
"start": "tsc --watch",
"tsc": "tsc --noEmit",
"tslint": "tslint --project ./tsconfig.json --format stylish",
"tslint:fix": "yarn tslint --fix",
"test:browser": "NF_MOCHA_RUN=1 TS_NODE_PROJECT=tsconfig.spec.json TS_NODE_IGNORE='node_modules\\/(?!@neufund)' mocha --inline-diffs --require ts-node/register/transpile-only --require ./setupTests.ts './src/*.spec.@(js|ts)'"
},
"devDependencies": {
"@redux-saga/types": "^1.1.0",
"@redux-saga/testing-utils": "^1.1.0",
"prettier": "^1.16.4",
"redux-saga-test-plan": "^4.0.0-rc.3",
"ts-node": "6.2.0",
"tslib": "^1.10.0",
"chai": "^4.2.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.3",
"typestrict": "^1.0.2",
"@neufund/shared-utils": "^1.0.0",
"mocha": "^6.0.2",
"sinon": "^7.3.1",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
"tslib": "^1.10.0",
"redux": "^4.0.5",
"lodash": "^4.17.11",
"@neufund/shared-utils": "^1.0.0"
},
"dependencies": {
"redux-saga": "^1.1.3",
"typed-redux-saga": "^1.0.6",
"redux-dynamic-modules": "^5.2.0",
"redux-dynamic-modules-saga": "^5.2.0"
}
}