-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.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
{
"name": "react-blocks-scroll-sync",
"version": "1.1.2",
"description": "",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run build",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elowes/react-blocks-scroll-sync.git"
},
"keywords": [
"scroll",
"sync scroll",
"scroll sync"
],
"author": "kaijun",
"license": "ISC",
"bugs": {
"url": "https://github.com/elowes/react-blocks-scroll-sync/issues"
},
"homepage": "https://github.com/elowes/react-blocks-scroll-sync#readme",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"core-js": "^3.6.4",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"typescript": "^3.8.3"
}
}