-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.79 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": "@immobiliarelabs/atomic-state",
"version": "1.0.2",
"description": "A decentralized state management library for React inspired by Recoil.js",
"homepage": "https://github.com/immobiliare/atomic-state",
"keywords": [
"react",
"state-manager",
"state-management",
"state-atom",
"atomic-state",
"recoil",
"recoiljs",
"state"
],
"scripts": {
"build": "microbundle --format es,cjs",
"dev": "microbundle --format es,cjs",
"build:check-prod-size": "yarn build --define process.env.NODE_ENV='\"production\"'",
"lint": "eslint --fix --ignore-path .gitignore .",
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"next": "HUSKY_SKIP_HOOKS=1 standard-version --prerelease",
"test": "tap --coverage-report=html --no-browser --watch --no-check-coverage",
"test:ci": "tap --coverage-report=text-summary --no-check-coverage",
"postinstall": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "[email protected]:immobiliare/atomic-state.git"
},
"source": "src/index.ts",
"main": "dist/atomic-state.js",
"module": "dist/atomic-state.module.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/tap": "^15.0.5",
"@types/testing-library__react": "^10.2.0",
"@types/use-subscription": "^1.0.0",
"@typescript-eslint/parser": "^4.29.3",
"conventional-gitlab-releaser": "^4.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"jsdom": "^17.0.0",
"lint-staged": "^11.1.2",
"markdown-toc": "^1.2.0",
"microbundle": "^0.13.3",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^17.4.7",
"sucrase": "^3.20.1",
"tap": "^15.0.9"
},
"resolutions": {
"typescript": "4.1.x"
},
"workspaces": [
"devtools"
],
"publishConfig": {
"access": "public"
}
}