-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.97 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.97 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "feedy",
"description": "feedback widget using Webcom",
"main": "src/index.js",
"keywords": [
"feedback",
"widget",
"screenshot",
"webcom"
],
"dependencies": {
"babel-polyfill": "^6.7.4",
"bootstrap": "^3.3.6",
"es6-promise": "^3.1.2",
"html2canvas": "^0.5.0-beta4",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.2",
"react-router": "^2.0.1",
"redux": "^3.4.0",
"redux-actions": "^0.9.1",
"redux-devtools": "^3.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.9",
"redux-logger": "^2.6.1",
"redux-saga": "^0.9.5",
"redux-simple-router": "^2.0.4",
"redux-thunk": "^2.0.1",
"ua-parser-js": "^0.7.10",
"webcom": "^0.2.3",
"whatwg-fetch": "^0.11.0"
},
"scripts": {
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm run test -- --watch",
"test:coverage": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --compilers js:babel-register",
"start": "webpack-dev-server --hot --host 0.0.0.0",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --progress --colors -p",
"serve": "cross-env NODE_ENV=production webpack-dev-server --host 0.0.0.0",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Paul Musso",
"engineStrict": true,
"engines": {
"node": ">=4"
},
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-inline-elements": "^6.6.5",
"babel-plugin-transform-react-remove-prop-types": "^0.2.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.7.0",
"eslint-loader": "^1.3.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"file-loader": "^0.8.5",
"ghooks": "^1.2.0",
"html-webpack-plugin": "^2.15.0",
"imports-loader": "^0.6.5",
"isparta": "^4.0.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"script-loader": "^0.6.1",
"semantic-release": "^4.3.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"validate-commit-msg": "^2.5.0",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1",
"webpack-sources": "^0.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/webcom-components/feedy.git"
}
}