forked from squirrelsquirrel78/react-scrollama
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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
{
"name": "react-scrollama",
"version": "0.4.1",
"description": "A simple scrollytelling interface for React using the IntersectionObserver.",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production"
},
"keywords": [
"react",
"scrollama",
"scrollytelling",
"IntersectionObserver",
"storytelling",
"visual journalism",
"data visualization",
"interactive",
"graphic",
"step"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"author": "Jason Kao <jason.kao@columbia.edu> (https://jasonkao.me)",
"homepage": "https://jsonkao.github.io/react-scrollama/",
"repository": {
"type": "git",
"url": "https://github.com/jsonkao/react-scrollama"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-transform-runtime": "^6.23.0",
"concurrently": "^3.5.1",
"html-webpack-plugin": "^3.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"intersection-observer": "^0.5.0",
"react-jss": "^8.6.1",
"url-parse": "^1.4.3"
}
}