-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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": "redux-flow-manager",
"version": "1.0.42",
"description": "Flow Manager System Base",
"main": "dist/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/refaelok/redux-flow-manager",
"repository": {
"type": "git",
"url": "https://github.com/refaelok/redux-flow-manager"
},
"files": [
"lib/",
"dist/",
"index.d.ts"
],
"scripts": {
"clear": "rimraf ./dist && rimraf ./lib",
"lint": "esw ./src --ext .ts,.tsx",
"lint:watch": "esw ./src --ext .ts,.tsx -w --color",
"lint:test": "esw ./test --ext .ts,.tsx",
"lint-and-fix": "eslint ./src --ext .ts,.tsx --fix",
"build": "npm run test && npm run lint && npm run clear && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"serve": "poi --serve",
"dev": "npm run test && npm run serve",
"start": "npm-run-all --parallel lint:watch dev",
"test": "jest",
"test:watch": "jest --watch",
"test:browser": "npm run test && poi --serve ./test/flowManger.browser.ts",
"prepublishOnly": "npm run build"
},
"jest": {
"preset": "ts-jest"
},
"keywords": [
"redux",
"react",
"xstate",
"flow manager",
"flow orianted",
"manager"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"lodash": "~4.17.19",
"redux": "4.0.5",
"xstate": "4.10.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/node": "7.8.7",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.10.1",
"@babel/register": "7.0.0",
"@poi/plugin-typescript": "12.3.1",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/lodash": "4.14.157",
"@types/node": "13.13.5",
"@types/puppeteer": "1.2.3",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"babel-loader": "8.0.4",
"cross-env": "5.2.0",
"eslint": "7.0.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.2",
"eslint-watch": "6.0.1",
"jest": "26.1.0",
"npm-run-all": "latest",
"poi": "12.8.0",
"redux-devtools-extension": "2.13.8",
"rimraf": "2.6.2",
"sass-loader": "8.0.2",
"ts-jest": "26.0.0",
"ts-loader": "7.0.3",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.8.3"
}
}