-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "@pagecall/react",
"license": "MIT",
"version": "0.0.2",
"private": false,
"description": "Integrate Pagecall with your react app",
"homepage": "https://pagecall.com",
"bugs": {
"url": "https://github.com/pagecall/react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pagecall/react"
},
"scripts": {
"build": "yarn clean; rollup -c",
"clean": "rimraf dist",
"dev": "yarn storybook",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"storybook": "start-storybook -p 9001 -c .storybook",
"prepare": "husky install"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/react": "^6.1.2",
"@types/react": "^16.9.10",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "7.0.2",
"lint-staged": "^13.2.3",
"prettier": "^2.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^5.0.0",
"webpack": "^4.42.1"
},
"lint-staged": {
"*.{js,md,json,css,html}": "prettier --write",
"*.{ts,tsx}": "eslint --fix --max-warnings=0"
}
}