-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.63 KB
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
84
85
86
87
88
89
90
91
92
{
"name": "@loong-js/core",
"version": "0.0.4",
"description": "Dependency injection of react + mobx",
"keywords": [
"react",
"mobx",
"di",
"ioc"
],
"author": "Shen Change <s2696922797c@outlook.com>",
"files": [
"dist"
],
"main": "./dist/loong-core.umd.js",
"module": "./dist/loong-core.es.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/loong-core.es.js",
"require": "./dist/loong-core.umd.js"
}
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "jest",
"serve": "vite preview",
"prepare": "husky install",
"commit": "commit",
"release": "standard-version",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint --cache ./src",
"analyze": "source-map-explorer 'dist/assets/*.js'",
"pub": "yarn build && yarn release && npm publish && git push"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/prompt-cli": "^15.0.0",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.14",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vitejs/plugin-react": "^1.1.3",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"mobx": "^6.3.10",
"mobx-react-lite": "^3.2.2",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"source-map-explorer": "^2.5.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.1",
"typescript": "^4.5.4",
"vite": "^2.7.2",
"vite-plugin-dts": "^0.9.7",
"vite-tsconfig-paths": "^3.3.17"
},
"peerDependency": {
"mobx": ">= 4",
"mobx-react-lite": ">= 1",
"react": ">= 16.8.6"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}