-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "react-sweet-toolbar",
"version": "0.3.0",
"description": "## Description",
"main": "dist/js/SweetToolbar.js",
"keywords": [
"react",
"react-component",
"search",
"image"
],
"dependencies": {
"react": "^0.14.3",
"react-dom": "^0.14.3",
"classnames": "^2.2.3",
"react-icons": "^1.0.3",
"react-loading": "0.0.9"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.17.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"extract-text-webpack-plugin": "^0.8.2",
"jsx-webpack-loader": "^0.1.2",
"node-sass": "^3.6.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.12.3",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"grunt": "grunt",
"build": "npm run build-js && npm run build-css",
"prepublish": "npm run build",
"start": "babel-node server.js",
"build-example": "npm run build && webpack --config webpack.config.js",
"build-css": "node-sass --include-path sass app/sass/SweetToolbar.sass dist/css/SweetToolbar.css",
"build-js": "babel app/components/SweetToolbar.js --out-file dist/js/SweetToolbar.js"
},
"babel": {
"presets": [
"react",
"es2015"
],
"ignore": [
"dist/**/*.js",
"webpack.config.js",
"webpack.config.dev.js"
]
},
"author": "smallma",
"license": "ISC"
}