-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 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
{
"name": "@relforce/morebnb-uikit",
"version": "1.0.0",
"description": "Set of UI components for pancake projects",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/relforce/morebnb-uikit.git",
"license": "MIT",
"scripts": {
"start": "yarn storybook",
"build": "rollup -c && tsc -d --emitDeclarationOnly --declarationDir dist",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check --loglevel error 'src/**/*.{js,jsx,ts,tsx}'",
"format:write": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test": "jest",
"prepublishOnly": "yarn build"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.5",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.8",
"@types/react-transition-group": "^4.4.2",
"@types/styled-components": "^5.1.12",
"jest-styled-components": "^7.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"rollup": "^2.38.4",
"styled-components": "^5.2.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.3"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"@rollup/plugin-url": "^6.1.0",
"@types/lodash": "^4.14.168",
"@types/styled-system": "^5.1.10",
"lodash": "^4.17.20",
"react-popper": "^2.2.5",
"react-transition-group": "^4.4.1",
"styled-system": "^5.1.5"
},
"publishConfig": {
"access": "public"
}
}