-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "fast-redux-logger",
"version": "0.0.0-development",
"description": "A fast replacement for redux-devtools that does only absolutely necessary things",
"repository": {
"url": "https://github.com/Aeolun/fast-redux-logger"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"release": {
"branches": ["master"]
},
"author": {
"name": "Bart Riepe",
"url": "https://serial-experiments.com"
},
"license": "ISC",
"dependencies": {
"@compiled/react": "^0.11.1",
"immutable": "^4.0.0",
"jsondiffpatch": "^0.4.1",
"localforage": "^1.10.0",
"react-base16-styling": "^0.8.1",
"react-json-tree": "^0.15.1",
"standard-version": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@compiled/babel-plugin": "^0.16.5",
"@types/react": "^17.0.2",
"react": "^17.0.2",
"redux": "4.0.1",
"semantic-release": "^19.0.5",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^17.0.2",
"redux": "^4.0.1"
}
}