forked from elrumordelaluz/reactour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.14 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
{
"name": "reactour",
"version": "1.11.0",
"description": "Tourist Guide into your React Components",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run lib",
"start": "webpack-dev-server --mode development --open",
"prelib": "rimraf dist",
"lib": "babel --out-dir dist --ignore *.test.js,src/demo src",
"watch": "babel src --watch --out-dir dist --ignore *.test.js,src/demo",
"build": "webpack --mode production",
"lint": "eslint --fix ./; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elrumordelaluz/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.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"body-scroll-lock": "2.6.1",
"css-loader": "2.0.2",
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"prettier": "1.15.3",
"react": "16.7.0",
"react-dom": "16.7.0",
"reshake": "1.1.6",
"rimraf": "2.6.2",
"style-loader": "0.23.1",
"styled-components": "4.1.3",
"webpack": "4.28.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0",
"styled-components": "^4.0.0"
},
"dependencies": {
"classnames": "2.2.6",
"exenv": "1.2.2",
"lodash.pick": "4.4.0",
"prop-types": "15.6.2",
"scroll-smooth": "1.0.1",
"scrollparent": "2.0.1"
}
}