-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@alevnyacow/shared-react-variables",
"version": "2.0.5",
"description": "Global mutable useState for React. For real!",
"main": "transpiled/index.js",
"scripts": {
"test": "npm run build && npm pack && cd ./tests/test-application && npm i && npm run test",
"clean_transpiled": "del-cli --force ./transpiled",
"format": "prettier --config .prettierrc --write sources/**",
"lint": "eslint sources/**/*.ts --ext .ts",
"check": "npm run lint && npm run test",
"build": "npm run clean_transpiled && tsc",
"execute": "npm run build && node transpiled/index.js"
},
"keywords": [
"react",
"state",
"state management",
"global state"
],
"author": "alevnyacow",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/react": "^17.0.39",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"del-cli": "^4.0.1",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"types": "transpiled/index.d.ts",
"dependencies": {
"@alevnyacow/deep-js-proxy": "^1.0.1",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alevnyacow/shared-react-variables.git"
},
"bugs": {
"url": "https://github.com/alevnyacow/shared-react-variables/issues"
},
"homepage": "https://codesandbox.io/s/react-shared-variables-example-f7feo7"
}