forked from elrumordelaluz/reactour
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.59 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
{
"name": "@instructure/reactour",
"version": "2.0.1",
"description": "Tourist Guide into your React Components",
"main": "dist/reactour.cjs.js",
"module": "dist/reactour.esm.js",
"scripts": {
"prepare": "npm run lib",
"start": "webpack-dev-server --mode development --open",
"prelib": "rimraf dist",
"lib": "rollup -c",
"build": "webpack --mode production",
"lint": "eslint --fix ./; exit 0",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instructure/reactour.git"
},
"keywords": [
"react",
"tour",
"intro",
"guide",
"introduction",
"step-by-step",
"guide",
"walkthrough",
"joyride",
"tourist-guide",
"product-intro",
"presentation"
],
"files": [
"dist",
"README.md"
],
"author": "Lionel T <[email protected]> (https://elrumordelaluz.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elrumordelaluz/reactour/issues"
},
"homepage": "https://github.com/elrumordelaluz/reactour#readme",
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "7.7.4",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-macros": "^2.8.0",
"body-scroll-lock": "2.6.4",
"css-loader": "3.2.1",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"reshake": "1.2.1",
"rimraf": "3.0.0",
"rollup": "1.27.8",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-node-resolve": "5.2.0",
"style-loader": "1.0.1",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@rooks/use-mutation-observer": "3.4.2",
"classnames": "2.2.6",
"focus-outline-manager": "^1.0.2",
"lodash.debounce": "4.0.8",
"prop-types": "15.7.2",
"react-focus-lock": "2.2.1",
"scroll-smooth": "1.1.0",
"scrollparent": "2.0.1"
}
}