-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "@simplux/recipes.basics.testing-state-changes",
"version": "0.18.0",
"description": "This recipe shows how simple it is to test your state changes with simplux",
"main": "src/index.ts",
"scripts": {
"start": "webpack-dev-server --mode development --progress --color",
"test": "jest --forceExit --verbose --detectOpenHandles --no-cache --colors --runInBand --config=./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrWolfZ/simplux.git"
},
"bugs": {
"url": "https://github.com/MrWolfZ/simplux/issues"
},
"homepage": "https://github.com/MrWolfZ/simplux/tree/master/recipes/basics/testing-state-changes#readme",
"keywords": [
"recipe",
"redux",
"simplux",
"typescript"
],
"author": "Jonathan Ziller <[email protected]> (https://www.github.com/MrWolfZ)",
"license": "MIT",
"private": true,
"dependencies": {
"@simplux/core": "0.18.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.21",
"html-webpack-plugin": "^4.0.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^6.0.2",
"typescript": "~4.2.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1"
}
}