-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.21 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.21 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "proxyui",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "node index",
"test": "jest",
"coverage": "jest --coverage",
"dist": "NODE_ENV=production webpack --progress",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": "10",
"npm": "6"
},
"author": "",
"license": "Commerical",
"dependencies": {
"babel-polyfill": "6.26.0",
"babel-runtime": "6.26.0",
"compression": "1.7.4",
"ejs": "2.7.4",
"express": "4.17.1",
"express-ejs-layouts": "2.5.0",
"fixed-data-table-2": "0.8.28",
"lodash": "4.17.15",
"npm-check-updates": "4.0.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-redux": "5.1.2",
"react-virtualized": "9.21.2",
"redux": "3.7.2",
"redux-logger": "2.10.2",
"redux-thunk": "2.3.0",
"webpack": "4.41.3"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/preset-env": "7.7.6",
"@babel/preset-flow": "7.7.4",
"@babel/preset-react": "7.7.4",
"assets-webpack-plugin": "3.9.10",
"autoprefixer-loader": "3.2.0",
"babel-core": "6.26.3",
"babel-jest": "18.0.0",
"babel-loader": "8.0.6",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"brace": "0.11.1",
"coveralls": "2.13.3",
"css-loader": "3.3.2",
"enzyme": "2.9.1",
"file-loader": "5.0.2",
"flow-bin": "0.114.0",
"html-webpack-plugin": "3.2.0",
"img-loader": "3.0.1",
"immutable": "3.8.2",
"install": "0.13.0",
"jest-cli": "18.1.0",
"moment": "2.29.2",
"node-sass": "4.13.0",
"react-ace": "4.4.0",
"react-addons-css-transition-group": "15.6.2",
"react-addons-test-utils": "15.6.2",
"react-hot-loader": "3.1.3",
"react-transition-group": "1.2.1",
"reconnecting-websocket": "3.2.2",
"redbox-react": "1.6.0",
"redux-immutable-state-invariant": "2.1.0",
"redux-mock-store": "1.5.4",
"sass-loader": "8.0.0",
"style-loader": "1.0.1",
"svgo": "1.3.2",
"svgo-loader": "2.2.1",
"url-loader": "3.0.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleDirectories": [
"client",
"node_modules"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/redux",
"<rootDir>/node_modules/react-redux",
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/crypto-js",
"<rootDir>/node_modules/lodash",
"<rootDir>/node_modules/enzyme"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
}
}