-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 3.39 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
{
"name": "@dreamsparkx/parallax",
"version": "0.0.0-development",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "apple tv parallax",
"scripts": {
"build": "rollup -c",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run build",
"format": "prettier --write 'src/**/*.{ts,tsx,js}'",
"deploy-storybook": "storybook-to-ghpages --ci",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/dreamsparkx/apple-tv-parallax.git"
},
"keywords": [
"React",
"Component",
"Library",
"Rollup",
"Typescript",
"Sass",
"Storybook",
"Apple",
"TV",
"Apple TV",
"Parallax"
],
"author": "Gaurav Bharti",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamsparkx/apple-tv-parallax/issues"
},
"homepage": "https://github.com/dreamsparkx/apple-tv-parallax",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-links": "^6.1.17",
"@storybook/react": "^6.1.20",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"react": "17.0.2",
"react-dom": "^16.14.0",
"require-context.macro": "^1.2.2",
"rollup": "^2.46.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.1.1",
"semantic-release": "^17.4.2",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"storybook-deployer": {
"gitUsername": "dreamsparkx",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages [ci skip]"
},
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
}
}