-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.59 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
{
"name": "root",
"private": true,
"lint-staged": {
"**/*.{ts,tsx,vue}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"prepare": "husky install",
"build:statemanjs": "node scripts/build.js statemanjs",
"build:statemanjs-react": "node scripts/build statemanjs-react",
"build:statemanjs-vue": "node scripts/build statemanjs-vue",
"build:statemanjs-solid": "node scripts/build statemanjs-solid",
"test:all": "node scripts/test.js all",
"test:statemanjs": "node scripts/test.js statemanjs",
"test:statemanjs-react": "node scripts/test.js statemanjs-react",
"test:statemanjs-vue": "node scripts/test.js statemanjs-vue",
"test:statemanjs-solid": "node scripts/test.js statemanjs-solid",
"publish:statemanjs": "node scripts/publish.js statemanjs",
"publish:statemanjs-react": "node scripts/publish.js statemanjs-react",
"publish:statemanjs-vue": "node scripts/publish.js statemanjs-vue",
"publish:statemanjs-solid": "node scripts/publish.js statemanjs-solid",
"benchmark:fill": "sh benchmarks/scripts/fill/fill.sh"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.17.7",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vue/test-utils": "^2.4.1",
"commander": "^11.0.0",
"effector": "^23.2.2",
"esbuild": "^0.18.15",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3",
"lodash": "^4.17.21",
"mobx": "^6.13.1",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"redux": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"solid-js": "^1.7.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vue": "^3.3.4"
}
}