-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·100 lines (100 loc) · 2.67 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
{
"name": "react-parlx",
"version": "1.4.0-beta.4",
"description": "parlx.js implementation for React component",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/react-parlx.cjs.js",
"module": "lib/react-parlx.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "npm run clean && npm run prettier && npm run lint && npm run build",
"clean": "rimraf lib/*",
"build": "rollup -c",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"lint": "eslint 'src/**/*.tsx' --fix",
"prettier": "prettier --write 'src/**/*.tsx'",
"storybook": "start-storybook -s ./assets -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/parlx-js/react-parlx.git"
},
"keywords": [
"component",
"parallax",
"scroll",
"movement",
"effect",
"react"
],
"bugs": {
"url": "https://github.com/parlx-js/react-parlx/issues"
},
"homepage": "https://github.com/parlx-js/react-parlx#readme",
"dependencies": {
"parlx.js": "^3.0.0-beta.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.0",
"@storybook/addon-actions": "^6.1.9",
"@storybook/addon-controls": "^6.1.9",
"@storybook/addon-docs": "^6.1.9",
"@storybook/addons": "^6.1.9",
"@storybook/react": "^6.1.9",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.16",
"@types/react": "^17.0.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"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": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"react": "^16.13.1",
"react-dom": "^17.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.tsx": [
"npm run prettier",
"npm run lint"
]
}
}