-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
{
"name": "react-rellax-wrapper",
"version": "1.0.6",
"description": "A react wrapper around the Rellax javascript library. Rellax -> https://dixonandmoe.com/rellax/",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"style:check": "eslint --ext .js --ext .jsx --ext tsx --ext ts . --quiet --cache",
"style:fix": "eslint --ext .js --ext .jsx --ext tsx --ext ts . --quiet --fix --cache",
"lint": "npm run style:check",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottjr632/react-rellax-wrapper.git"
},
"keywords": [
"ReactJS",
"React",
"Providers",
"Context",
"Wrapper"
],
"author": "Scott Richardson <scott@scottrichardson.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottjr632/react-rellax-wrapper/issues"
},
"homepage": "https://github.com/scottjr632/react-rellax-wrapper#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/addon-storysource": "^6.1.10",
"@storybook/addons": "^6.1.10",
"@storybook/cli": "^6.1.10",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.10",
"@storybook/storybook-deployer": "^2.8.7",
"@types/jest": "^25.1.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/rellax": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-loader": "^8.0.6",
"eslint": "^7.4.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react-dom": "^16.8.0",
"ts-jest": "^25.4.0",
"ts-loader": "^6.2.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"react": "^16.8.0"
},
"files": [
"lib/**/*",
"README.md"
],
"dependencies": {
"rellax": "^1.12.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}