forked from elrumordelaluz/reactour
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
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
{
"name": "reactour",
"version": "1.7.0",
"description": "Tourist Guide into your React Components",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run lib",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.babel.js",
"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": "NODE_ENV=production webpack -p",
"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 <elrumordelaluz@hotmail.com> (https://elrumordelaluz.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elrumordelaluz/reactour/issues"
},
"homepage": "https://github.com/elrumordelaluz/reactour#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"cross-env": "5.1.3",
"css-loader": "0.28.9",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.12.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"reshake": "1.0.8",
"rimraf": "2.6.2",
"style-loader": "0.20.1",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.1"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-2"
]
},
"dependencies": {
"classnames": "2.2.5",
"exenv": "1.2.2",
"lodash.pick": "4.4.0",
"prop-types": "15.6.0",
"scroll-smooth": "1.0.1",
"scrollparent": "2.0.1",
"styled-components": "3.1.5"
}
}