-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "platinumfinancev2",
"version": "1.1.7",
"description": "Set of UI components for Platinum Finance",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/SemmyShow/pancake-uikit",
"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": {
"@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.7",
"@types/react-transition-group": "^4.4.1",
"@types/styled-components": "^5.1.10",
"jest-styled-components": "^7.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.0",
"typescript": "^4.3.5"
},
"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",
"@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"
}
}