-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.83 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@jacobodeharo/react-lib",
"version": "0.0.9",
"description": "React component library",
"author": "Jacobo de Haro",
"license": "UNLICENSED",
"main": "build/index.js",
"module": "build/index.esm.js",
"homepage": "/jhh-react-library",
"scripts": {
"start": "npm run storybook",
"build": "rollup -c",
"pretty:fix": "prettier --write './**/*.{js,jsx,mjs,ts,tsx,css,scss,md,html}'",
"pretty:check": "prettier --check './**/*.{js,jsx,mjs,ts,tsx,css,scss,md,html}'",
"test:lint": "eslint --ext .jsx,.js,.ts,.tsx .",
"test:lint:fix": "eslint --fix --ext .jsx,.js,.ts,.tsx .",
"test:lint:ci": "eslint --quiet --ext .jsx,.js,.ts,.tsx .",
"test:unit": "jest",
"test:unit:coverage": "jest --collectCoverage",
"test:snapshots": "jest --update-snapshot --detectOpenHandles",
"test:unit:watch": "jest --watch",
"test": "run-s test:lint:fix test:unit",
"build:link": "npm run build && cd build && npm link --prod",
"bump:patch": "npm version patch --force",
"bump:minor": "npm version minor --force",
"bump:mayor": "npm version mayor --force",
"clean": "npm run clean:build",
"clean:build": "rm -rf ./build && rm -rf coverage",
"clean:npm": "rm -rf ./node_modules && npm cache verify",
"clean:storybook": "rm -rf ./storybook-static",
"clean:all": "cli-confirm \"Removing node_modules and build directories... Proceed? (y/n)\" && run-s clean:build clean:npm clean:storybook",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -s public",
"storybook:serve": "./node_modules/.bin/http-server -a localhost -p 8000 -c-1 ./storybook-static",
"storybook:deploy": "./node_modules/.bin/gh-pages -d storybook-static",
"storybook:deploy:ci": "./node_modules/.bin/storybook-to-ghpages -o=storybook-static --ci",
"publish:npm": "npm publish",
"publish:patch": "run-s bump:patch publish:npm",
"publish:minor": "run-s bump:minor publish:npm",
"publish:mayor": "run-s bump:mayor publish:npm"
},
"source": "index.ts",
"peerDependencies": {
"react": "17.0.1",
"react-dom": "17.0.1",
"styled-components": "5.2.1"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@storybook/addon-actions": "6.1.0-alpha.12",
"@storybook/addon-essentials": "6.1.0-alpha.12",
"@storybook/addon-links": "6.1.0-alpha.12",
"@storybook/react": "6.1.0-alpha.12",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/dom": "7.26.6",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.1.2",
"@testing-library/react-hooks": "3.4.2",
"@testing-library/user-event": "12.2.2",
"@types/jest": "26.0.15",
"@types/node": "14.14.7",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"@types/styled-components": "5.1.4",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.1",
"babel-plugin-react-css-modules": "5.2.6",
"babel-preset-react-app": "10.0.0",
"cli-confirm": "1.0.1",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-standard": "16.0.1",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.1.0",
"gh-pages": "~3.1.0",
"http-server": "^0.12.3",
"husky": "4.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-styled-components": "7.0.3",
"lint-staged": "10.5.1",
"node-sass": "5.0.0",
"npm-run-all": "4.1.5",
"postcss-scss": "3.0.4",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"react-is": "17.0.1",
"react-test-renderer": "17.0.1",
"rollup": "2.33.1",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "3.1.8",
"rollup-plugin-typescript-paths": "^1.2.2",
"rollup-plugin-typescript2": "0.29.0",
"sass-loader": "10.1.0",
"styled-components": "5.2.1",
"styled-theming": "2.2.0",
"ts-jest": "26.4.4",
"ts-loader": "8.0.11",
"typescript": "4.0.5",
"typescript-plugin-styled-components": "1.4.4",
"utility-types": "3.10.0"
},
"files": [
"build"
],
"types": "build/index.d.ts",
"dependencies": {},
"resolutions": {
"styled-components": "^5"
},
"engines": {
"node": ">=12"
},
"storybook-deployer": {
"gitUsername": "Jacobo de Haro",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook [skip ci]"
}
}