-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "scroll-indicator",
"version": "1.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/Deep-Codes/scroll-indicator",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"concurrently": "^5.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.19.0",
"install-peers-cli": "^2.2.0",
"prepend-file": "^2.0.0",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w"
},
"files": [
"dist"
],
"dependencies": {}
}