This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "@bheui/server-functions",
"version": "0.1.3",
"repository": "https://github.com/TomaszPilch/BHE-be-ui-server-functions.git",
"author": "Tomasz Pilch",
"license": "MIT",
"main": "dist",
"scripts": {
"prepare": "install-peers",
"prebuild": "rimraf lib && mkdir lib",
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"publish:package": "yarn publish --access public",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook --no-dll"
},
"files": [
"package.json",
"readme.md",
"lib/*",
"yarn.lock"
],
"peerDependencies": {
"axios": "^0.21.0"
},
"dependencies": {
"ramda": "^0.27.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.12.1",
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/next": "^9.0.0",
"@types/node": "^14.14.10",
"axios": "^0.21.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-react-docgen": "^4.1.0",
"copyfiles": "^2.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"install-peers-cli": "^2.2.0",
"jest": "^26.4.2",
"next": "^10.0.1",
"prettier": "^2.1.1",
"rimraf": "^2.6.3"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": ".coverage",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
}
}