-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.37 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
{
"name": "@apisuite/apisuite-common-components",
"version": "1.0.6",
"description": "apisuite common components lib",
"main": "./build/index.js",
"module": "./build/index.es.js",
"files": [
"build"
],
"types": "build/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -w -c",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"format": "prettier --write \"src/{,**/}*.ts{,x}\"",
"lint": "tsc --noEmit && eslint \"./src/{,**/}*.ts{,x}\"",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"author": "a31859 <https://github.com/a31859>",
"repository": {
"type": "git",
"url": "git+https://github.com/APISuite/common-components.git"
},
"bugs": {
"url": "https://github.com/APISuite/common-components/issues"
},
"homepage": "https://github.com/APISuite/common-components/blob/main/README.md",
"prettier": {
"semi": false,
"singleQuote": true
},
"license": "MPL-2.0",
"peerDependencies": {
"@material-ui/core": "^4.11.1",
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/addon-actions": "^6.1.6",
"@storybook/addon-essentials": "^6.1.6",
"@storybook/addon-links": "^6.1.6",
"@storybook/react": "^6.1.6",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-loader": "^8.2.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"fork-ts-checker-webpack-plugin": "^6.0.3",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"rollup": "^2.28.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"react-portal-overlay": "1.0.1"
}
}