-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "jeddy",
"version": "1.0.19",
"main": "./lib",
"types": "./types/*",
"description": "Reactive UI building Framework",
"scripts": {
"test": "jest --verbose ./__tests__/",
"test-specific": "jest --verbose ./__tests__/jredux/reducer.test.js",
"compile": "tsc"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"keywords": [
"UI",
"Reactive",
"Web"
],
"author": "Jeraldy Deus | deusjeraldy@gmail.com",
"license": "ISC",
"devDependencies": {
"css-loader": "^3.4.2",
"extract-loader": "^3.1.0",
"file-loader": "^5.0.2",
"jest": "^26.0.1",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"redux": "^4.0.5"
}
}