-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.45 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
{
"name": "synaptik",
"version": "2.3.0",
"description": "Yet another state management library",
"main": "lib/synaptik.js",
"module": "lib/synaptik.es.js",
"types": "lib/synaptik.d.ts",
"repository": "https://github.com/heydoctor/synaptik",
"author": "Kyle Alwyn <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib",
"logger.js",
"README.md"
],
"scripts": {
"bump": "standard-version",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"test": "jest",
"build": "npm-run-all clean rollup",
"clean": "rimraf dist",
"rollup": "rollup -c",
"release": "npm-run-all test build bump",
"example": "parcel example/index.html",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"deep-object-diff": "^1.1.0",
"shallowequal": "^1.1.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/shallowequal": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"immer": "^6.0.3",
"jest": "^24.1.0",
"jest-dom": "^3.1.2",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.8.3",
"react-testing-library": "^5.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"standard-version": "^7.1.0",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"bash -c tsc --noEmit",
"yarn lint"
]
}
}