-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.32 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
{
"name": "@moneyforward/cloud-react-ui",
"version": "1.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "React ui components for Money Forward Cloud",
"author": "Money Forward Cloud Engineers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/moneyforward/cloud-react-ui.git"
},
"bugs": {
"url": "https://github.com/moneyforward/cloud-react-ui/issues"
},
"homepage": "https://github.com/moneyforward/cloud-react-ui#readme",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib/",
"build": "tsc",
"lint": "prettier --check '**/*.{ts,tsx,json}' && eslint src/ --ext .ts,.tsx",
"fmt": "prettier --write '**/*.{ts,tsx,json}' && eslint src/ --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"storybook": "start-storybook -c .storybook/ --quiet",
"storybook:deploy": "storybook-to-ghpages",
"release": "semantic-release"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.12.3",
"deepmerge": "^4.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^4.3.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.0",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/storybook-deployer": "^2.8.16",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/react-select": "^4.0.18",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-moneyforward": "^2.0.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.8",
"prettier": "^2.4.1",
"semantic-release": "^19.0.3",
"ts-jest": "^27.0.7",
"typescript": "^4.5.5"
}
}