-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.47 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
{
"name": "@artemisag/mobx-async-store",
"version": "7.1.1",
"license": "MIT",
"module": "dist/mobx-async-store.esm.js",
"main": "dist/mobx-async-store.cjs.js",
"dependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"jsonapi-serializer": "^3.6.4",
"lodash": "^4.17.21",
"mobx": "6.3.5",
"moment": "^2.29.4",
"qs": "^6.11.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/fetch-mock": "^7.3.5",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.185",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-core": "7.0.0-bridge.0",
"clean-jsdoc-theme": "^4.2.1",
"eslint": "^8.36.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.3.1",
"jest-coverage-badges": "^1.1.2",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^4.0.0",
"jsdom": "^20.0.3",
"jsdom-global": "^3.0.0",
"mobx-react": "^7.5.2",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.79.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest spec/* --verbose",
"test:coverage": "yarn test -- --coverage",
"test:badges": "yarn run test:coverage && jest-coverage-badges",
"lint": "node_modules/.bin/eslint src spec",
"docs": "jsdoc -c jsdoc.json --verbose"
},
"files": [
"dist"
]
}