-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
{
"name": "aidbox-react",
"version": "1.10.0",
"scripts": {
"build": "tsc & rollup -c",
"prebuild": "rimraf lib/* & rimraf dist/*",
"coverage": "jest --config=./jest.config.json --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --config=./jest.config.json",
"test:watch": "jest --config=./jest.config.json --watch",
"prepare": "npm run build"
},
"dependencies": {
"@beda.software/remote-data": "^1.1.3",
"axios": "^1.6.2",
"moment": "^2.29.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@react-native-community/eslint-config": "^2.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.25",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.uniq": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.0",
"jest": "^24.9.0",
"lint-staged": "^10.0.2",
"prettier": "^3.0.0",
"react": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.2",
"rollup": "^3.7.4",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^24.3.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"lib/**/*",
"src/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}