-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
83 lines (83 loc) · 2.08 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
{
"name": "@ice/store",
"version": "2.0.4",
"description": "Simple and friendly state for React",
"main": "esm/index.js",
"module": "esm/index.js",
"files": [
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ice-lab/icestore.git"
},
"keywords": [
"hooks",
"state"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ice-lab/icestore/issues"
},
"homepage": "https://github.com/ice-lab/icestore",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"build": "rm -rf esm && tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --cache --ext .ts,.tsx,.js ./",
"test": "cross-env NODE_ENV=unittest jest",
"test:w": "jest --watch",
"coverage": "codecov",
"publish": "ts-node scripts/publish"
},
"dependencies": {
"immer": "^9.0.6",
"lodash.isfunction": "^3.0.9",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@applint/spec": "^1.2.3",
"@testing-library/react": "^9.0.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^25.2.1",
"@types/node": "^12.0.0",
"axios": "^0.21.1",
"codecov": "^3.3.0",
"cross-env": "^7.0.2",
"eslint": "^8.6.0",
"stylelint": "^15.10.2",
"fs-extra": "^10.0.0",
"husky": "^3.0.9",
"ice-npm-utils": "^2.1.1",
"jest": "^26.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.13.0",
"ts-jest": "^26.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.7.4"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/tests/helpers/",
"<rootDir>/node_modules/"
],
"preset": "ts-jest"
}
}