-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"private": false,
"name": "a-modelt",
"version": "0.0.0",
"description": "This is a model state management tool",
"license": "MIT",
"author": "Jimmy.Harding",
"homepage": "https://github.com/filefoxper/a-model",
"repository": {
"type": "git",
"url": "https://github.com/filefoxper/a-model"
},
"main": "dist/index.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "node ./build.js",
"docs": "docsify serve ./docs",
"lint": "eslint src --fix --ext .ts,.tsx ",
"lint-init": "eslint --init",
"test": "jest --coverage"
},
"typings": "index.d.ts",
"devDependencies": {
"@types/jest": "^29.5.14",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"esbuild": "^0.23.1",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-webpack-plugin": "^4.0.1",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"typescript": "^4.9.5",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.8.1"
},
"keywords": [
"model",
"state",
"state-management",
"typescript"
]
}