-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.24 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-hash-scroll",
"version": "1.4.7",
"description": "Customizable React components for hash scrolling with refs (TS supported)",
"main": "cjs/index.js",
"author": {
"name": "Yash Totale",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/YashTotale/react-hash-scroll.git"
},
"bugs": {
"url": "https://github.com/YashTotale/react-hash-scroll/issues"
},
"homepage": "https://github.com/YashTotale/react-hash-scroll/",
"license": "MIT",
"scripts": {
"prebuild": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node scripts/prebuild.ts",
"build": "NODE_ENV=production rollup -c",
"build:cjs": "BUILD_ENV=cjs npm run build",
"build:umd": "BUILD_ENV=umd npm run build",
"postbuild": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node scripts/postbuild.ts",
"start": "rollup -c -w",
"test": "jest",
"precommit": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node scripts/precommit.ts",
"prepublishOnly": "npm run build",
"preversion": "npm test",
"postversion": "git push && git push --follow-tags && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node scripts/recreate-releases.ts",
"buildwiki": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node scripts/buildwiki.ts"
},
"dependencies": {
"tiny-warning": "^1.0.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@octokit/rest": "^18.0.9",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/dotenv-safe": "^8.1.1",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/marked": "^1.2.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.6",
"@types/react-test-renderer": "^17.0.0",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"axios": "^0.21.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-plugin-dev-expression": "^0.2.2",
"babel-runtime": "^6.26.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.7",
"husky": "^4.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"markdownlint-cli": "^0.26.0",
"marked": "^2.0.0",
"moment": "^2.29.1",
"prettier": "^2.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2",
"simple-git": "^2.24.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"files": [
"cjs",
"umd"
],
"keywords": [
"react",
"router",
"url",
"hash",
"scroll",
"scroller"
]
}