-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.68 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "domapic-controller-ui",
"version": "1.0.0-beta.3",
"description": "Web user interface for Domapic Controller",
"main": "index.js",
"keywords": [
"domapic",
"domapic-controller",
"ui"
],
"scripts": {
"test": "jest --config=./.jest.config.js --watch",
"test-ci": "jest --config=./.jest.config.js",
"test-acceptance": "narval",
"start": "webpack-dev-server --env.NODE_ENV=development",
"build": "NODE_ENV=production webpack --env.NODE_ENV=production -p",
"build-profile": "NODE_ENV=production webpack --env.NODE_ENV=production -p --profile --json > webpack-stats.json",
"lint": "eslint src config webpack.config.js test mocks",
"coveralls": "cat ./.coverage/lcov.info | coveralls",
"serve": "serve dist -l 3000 -s",
"mocks": "node mocks/server/bin.js --features=mocks/features"
},
"files": [
"/dist",
"index.js"
],
"dependencies": {
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"axios-retry": "^3.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"body-parser": "1.18.3",
"boom": "7.2.0",
"chalk": "^2.4.1",
"commander": "2.17.1",
"copy-webpack-plugin": "^4.6.0",
"cors": "2.8.4",
"coveralls": "^3.0.2",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"express": "4.16.3",
"express-request-id": "1.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"history": "^4.7.2",
"hoist-non-react-statics": "^3.2.1",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"is-promise": "^2.1.0",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"mini-css-extract-plugin": "^0.5.0",
"moment": "^2.24.0",
"narval": "^2.2.1",
"node-watch": "0.5.8",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path-to-regexp": "^2.4.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"puppeteer": "^1.11.0",
"query-string": "^6.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-infinite-scroller": "^1.2.4",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.7.0",
"redux": "^4.0.1",
"regenerator-runtime": "^0.13.1",
"require-all": "3.0.0",
"route-parser": "0.0.5",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "^0.84.0",
"serve": "^10.1.1",
"sinon": "^7.2.2",
"socket.io": "2.2.0",
"socketio-auth": "0.1.1",
"strip-ansi": "^4.0.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.2",
"tree-kill-sync": "^1.0.0",
"ttf-loader": "^1.0.2",
"underscore-template-loader": "^1.0.0",
"url-loader": "^1.1.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"winston": "3.0.0"
},
"author": {
"name": "Javier Brea",
"url": "https://javierbrea.com"
},
"homepage": "http://domapic.com",
"license": "MIT",
"repository": "https://github.com/domapic/domapic-controller-ui"
}