forked from varzock/reactour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.62 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
{
"name": "reactour",
"version": "1.6.5",
"description": "Tourist Guide into your React Components",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.babel.js",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:es && npm run build:css && npm run build:docs",
"build:es": "cross-env NODE_ENV=production babel --copy-files -d dist --ignore *.test.js,src/demo src",
"build:css": "node-sass src/styles/reactour.scss -o dist/styles/ && postcss dist/styles/reactour.css --use autoprefixer --no-map -d dist/styles",
"build:docs": "cross-env NODE_ENV=production webpack -p"
},
"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": {
"autoprefixer": "^8.2.0",
"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.4",
"css-loader": "^0.28.11",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.8.3",
"postcss-cli": "^5.0.0",
"postcss-loader": "^2.1.3",
"react": "16.2.0",
"react-dom": "16.2.0",
"reshake": "1.0.8",
"rimraf": "2.6.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"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": {
"@dr/bem-helper": "^1.2.4",
"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"
}
}