-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.45 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@waves.exchange/react-uikit",
"version": "0.8.7",
"description": "",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/waves-exchange/react-uikit.git"
},
"bugs": {
"url": "https://github.com/waves-exchange/react-uikit/issues",
"email": "[email protected]"
},
"homepage": "https://waves.exchange",
"scripts": {
"test": "jest",
"test:c": "jest --coverage",
"test:d": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test:w": "jest --watch",
"start": "start-storybook -p 3001",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "rimraf ./dist/cjs && tsc -p ./tsconfigs/tsconfig.cjs.json",
"build:esm": "rimraf ./dist/esm && tsc -p ./tsconfigs/tsconfig.esm.json",
"build:storybook": "build-storybook -s public -o public/storybook",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint-fix": "eslint './src/**/*.{ts,tsx}' --fix",
"prepublish": "npm run test && npm run build",
"prettier": "prettier --ignore-path .gitignore \"./src/**/*.+(ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"check-types": "tsc --noEmit",
"postversion": "npm publish --access public",
"watch-ts": "tsc -p ./tsconfigs/tsconfig.cjs.json -w"
},
"devDependencies": {
"@emotion/core": "10.0.17",
"@emotion/styled": "10.0.17",
"@storybook/addon-knobs": "5.2.8",
"@storybook/addon-storysource": "5.2.8",
"@storybook/addon-viewport": "5.2.8",
"@storybook/react": "5.2.8",
"@styled-system/should-forward-prop": "5.1.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "9.1.4",
"@types/jest": "^24.0.25",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/styled-system": "5.1.1",
"@types/styled-system__css": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@waves/ts-lib-crypto": "^1.4.3",
"babel-loader": "8.0.6",
"emotion-theming": "^10.0.19",
"eslint": "6.3.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.0.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "3.0.5",
"jest": "^24.9.0",
"jest-emotion": "^10.0.27",
"lint-staged": "9.2.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "3.0.0",
"styled-system": "5.1.2",
"ts-jest": "24.0.2",
"ts-loader": "6.1.0",
"tslib": "1.10.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"@emotion/core": "*",
"@emotion/styled": "*",
"emotion-theming": "*",
"react": "*",
"react-dom": "*",
"styled-system": "*",
"tslib": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run check-types && npm run test",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@popperjs/core": "^2.0.0-rc.1",
"@styled-system/css": "^5.1.4",
"@types/ramda": "^0.26.36",
"@waves/ts-types": "^0.3.1",
"identity-img": "^2.0.0",
"ramda": "^0.26.1"
}
}