forked from rocksell/react-start-tips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"name": "@wyscout/react-start-tips",
"version": "2.0.4",
"description": "Simple component is designed to help the user to understand your application workflow on the first entry",
"main": "lib/index",
"scripts": {
"build": "npm run build:commonjs & npm run build:umd ",
"build:commonjs": "mkdir -p lib && babel ./src -d lib",
"build:commonjs:watch": "mkdir -p lib && babel ./src -d lib -w",
"build:umd": "webpack dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"lib",
"src"
],
"author": "Anastasiya Grishina",
"license": "ISC",
"dependencies": {
"react": "^15.1.0",
"react-click-outside": "^2.1.0",
"react-css-modules": "^3.7.6",
"react-dom": "^15.2.1",
"react-motion": "^0.4.3",
"react-motion-ui-pack": "^0.7.3",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-actions": "^0.9.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.7.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"node-sass": "^3.8.0",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.13"
}
}