-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.07 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
94
95
{
"name": "salad-ui-wrapper",
"version": "0.0.4",
"licence": {
"type": "mit",
"url": "https://raw.githubusercontent.com/samueldelesque/salad-ui/master/LICENCE"
},
"description": "",
"scripts": {
"start": "webpack-dev-server",
"distribute:demo": "webpack --config ./webpack.prod.js",
"dist:demo": "npm run distribute:demo",
"dist": "webpack --config ./webpack.salad-ui.js; webpack --config ./webpack.salad-ui.chart.js; webpack --config ./webpack.salad-ui.lib.js; webpack --config ./webpack.salad-ui.util.js; webpack --config ./webpack.salad-ui.form.js",
"lint": "eslint src",
"publish": "npm run dist; node ./publish.js; git add .; git commit -m 'increment salad-ui version'; git push",
"pub": "npm run publish",
"tests": "mocha src/tests/*.js",
"deploy": "rsync -rvz ./static/* aligator:/var/app/salad-ui",
"dev": "npm run build; concurrently --kill-others 'npm run build-watch' 'npm run webpack' 'node build/server.js --local'",
"build": "babel src -d build",
"build-watch": "babel src --watch -d build"
},
"repository": {
"type": "git",
"url": "https://github.com/samueldelesque/salad-ui.git"
},
"keywords": [
"react",
"react-component",
"react-chart",
"react-graph",
"react-simple-charts",
"charting"
],
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0-beta.5",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-transform-decorators": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.0.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"compression-webpack-plugin": "^1.0.1",
"concurrently": "^2.1.0",
"cross-env": "^1.0.6",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"enzyme": "^2.7.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^3.0.2",
"fs-extra": "^0.30.0",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"lodash": "^4.11.1",
"mocha": "^2.5.3",
"moment": "^2.12.0",
"node-sass": "^3.4.2",
"open-browser-webpack-plugin": "^0.0.5",
"optimist": "^0.6.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^3.1.1",
"react-test-renderer": "^15.4.1",
"sass": "^0.5.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"clamp-js": "^0.7.0",
"console-polyfill": "^0.2.2",
"lodash.merge": "^4.3.5",
"numeral": "^1.5.3",
"object.entries": "^1.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"route-parser": "0.0.5",
"sprintf-js": "^1.0.3",
"universal-fetch": "^1.0.0"
}
}