generated from kousaku-maron/react-component-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.52 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@funii-inc/funiate-app-node-components",
"version": "0.3.8",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/funii-inc/funiate-app-node-components.git",
"author": "kosaku kurino <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server",
"build:page": "webpack --mode production",
"deploy:page": "gh-pages -d examples/dist",
"publish:page": "yarn build:page && yarn deploy:page",
"build:component": "tsc --project tsconfig.component.json --module commonjs",
"deploy:component": "yarn publish",
"publish:component": "yarn build:component && yarn deploy:component",
"prepare": "yarn build:component",
"lint": "yarn eslint './**/*.{ts,tsx}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint './**/*.{ts,tsx}'"
]
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"peerDependencies": {
"@funii-inc/funiate-types": ">=0.3.17",
"pure-react-carousel": ">=1.27.6",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"styled-components": ">=5.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@funii-inc/funiate-types": "^0.3.17",
"@mdx-js/loader": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-responsive": "^8.0.2",
"@types/styled-components": "^5.1.1",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^3.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prism-react-renderer": "^1.1.1",
"pure-react-carousel": "^1.27.6",
"react": "16.9.0",
"react-dom": "16.9.0",
"style-loader": "^1.2.1",
"styled-components": "^5.2.1",
"ts-loader": "^8.0.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {}
}