-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-connect-state",
"description": "Simple, type safe and time travelling state management for React",
"keywords": [
"react",
"state",
"typescript"
],
"version": "4.0.0",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"playground": "cosmos --config playground/cosmos.config.js",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist",
"compile": "tsc --project tsconfig.build.json --declaration --outDir ./dist",
"prepublishOnly": "npm run build",
"lint": "eslint --ext ts,tsx,js .",
"test": "./tests/run.sh",
"_test": "GUI_COVERAGE=1 tdd-buffet test --config tests/jest.config.js --coverage --runInBand",
"_test:playground": "docker-compose -f tests/gui/docker-compose.yml up -d --build",
"_test:selenium": "selenium start",
"_test:selenium:stop": "selenium stop",
"_test:selenium:debug": "selenium debug",
"_test:fixtures": "cd playground && ./get-fixtures.js",
"report-coverage": "codecov -f tests/results/coverage-final.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.tsx?": "eslint",
"*.js": "eslint"
},
"author": "Andrei Picus",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:NiGhTTraX/react-connect-state.git"
},
"dependencies": {
"@material-ui/core": "~4.8.0",
"react-bind-component": "~1.0.1",
"stringify-object": "~3.3.0"
},
"peerDependencies": {
"react": "^16"
},
"devDependencies": {
"@babel/core": "~7.11.0",
"@babel/plugin-proposal-class-properties": "~7.10.0",
"@babel/plugin-proposal-decorators": "~7.10.0",
"@babel/preset-env": "~7.11.0",
"@babel/preset-react": "~7.10.0",
"@babel/preset-typescript": "~7.10.0",
"@babel/register": "~7.10.0",
"@nighttrax/eslint-config-tsx": "~3.0.0",
"@tdd-buffet/react": "~0.9.0",
"@tdd-buffet/selenium": "~0.4.5",
"@tdd-buffet/visual": "~0.2.30",
"@types/fetch-mock": "~7.3.0",
"@types/node": "~12.12.0",
"@types/react": "~16.9.11",
"@types/react-dom": "~16.9.3",
"@types/react-hot-loader": "~4.1.0",
"@types/sinon": "~9.0.0",
"@types/sinon-chai": "~3.2.3",
"@types/stringify-object": "~3.3.0",
"@typescript-eslint/eslint-plugin": "~3.9.0",
"babel-loader": "~8.1.0",
"babel-plugin-istanbul": "~6.0.0",
"chai": "~4.2.0",
"codecov": "~3.7.0",
"css-loader": "~4.2.0",
"eslint": "~6.8.0",
"eslint-plugin-react": "~7.20.0",
"fork-ts-checker-webpack-plugin": "~4.1.0",
"html-webpack-plugin": "~4.3.0",
"husky": "~4.2.0",
"ignore-styles": "~5.0.1",
"jest": "~26.4.0",
"less": "~3.12.0",
"less-loader": "~6.2.0",
"lint-staged": "~10.2.0",
"react": "~16.13.0",
"react-cosmos": "~4.8.0",
"react-cosmos-shared": "~4.8.0",
"react-cosmos-voyager2": "~4.8.0",
"react-dom": "~16.13.0",
"react-mock-component": "~2.3.0",
"reset.css": "~2.0.2",
"sinon": "~9.0.0",
"sinon-chai": "~3.5.0",
"style-loader": "~1.2.0",
"tdd-buffet": "~0.16.0",
"ts-loader": "~8.0.0",
"ts-node": "~9.0.0",
"typemoq": "~2.1.0",
"typescript": "~3.9.0",
"webdriverio": "~6.4.0",
"webpack": "~4.44.0",
"webpack-cli": "~3.3.9",
"webpack-dev-server": "~3.11.0"
}
}