-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "react-page-slides",
"version": "0.1.3",
"description": "React component for creating fullscreen scrolling websites with parallax effect. Supports Typescript.",
"license": "MIT",
"author": {
"name": "Andrii Golubenko",
"email": "[email protected]"
},
"repository": "https://github.com/wermetal/react-page-slides.git",
"homepage": "https://wermetal.github.io/react-page-slides",
"files": [
"/dist",
"/src"
],
"keywords": [
"fullpage",
"parallax",
"fullscreen",
"react",
"react-fullpage",
"fullpage-react",
"fullpage-scroll",
"slides"
],
"main": "dist/index.js",
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"scripts": {
"start": "webpack-dev-server --config='example/webpack.config.ts'",
"build-example": "webpack --config='example/webpack.config.ts'",
"build": "tsc"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^4.4.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.10.1",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/webpack": "^4.4.17",
"@types/webpack-dev-server": "^3.1.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"dat.gui": "^0.7.3",
"html-webpack-plugin": "^3.2.0",
"react-scripts-ts": "2.17.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.3",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}