This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.25 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
{
"name": "MetadataManager",
"version": "0.1.0",
"private": true,
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs3": "^7.4.3",
"auto-reload-brunch": "^2",
"autoprefixer": "9.5.1",
"babel-brunch": "^7.0.1",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.5.0",
"babel-plugin-system-import-transformer": "^4.0.0",
"before-brunch": "0.0.5",
"braces": "^2.3.1",
"brunch": "^2.10.17",
"chalk": "1.1.3",
"clean-css-brunch": "^2",
"connect-history-api-fallback": "1.3.0",
"cross-spawn": "4.0.2",
"detect-port": "1.0.1",
"dotenv": "2.0.0",
"ejs": "^2.5.7",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.2",
"fs-extra": "0.30.0",
"http-proxy-middleware": "^0.19.0",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"object-assign": "4.1.0",
"path-exists": "2.1.0",
"promise": "7.1.1",
"react-dev-utils": "^9.0.0",
"react-test-renderer": "^16.2.0",
"recursive-readdir": "2.1.0",
"sinon": "^6.3.5",
"strip-ansi": "3.0.1",
"terser-brunch": "^3.0.0",
"whatwg-fetch": "1.0.0"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0",
"classnames": "^2.2.6",
"core-js": "^3.0.1",
"csvtojson": "^2.0.8",
"digest-brunch": "^1.6.0",
"events": "^1.1.1",
"immutability-helper": "^2.1.2",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"json-brunch": "^1.5.4",
"lodash": "^4.17.15",
"moment": "^2.22.2",
"node-gyp": "^3.8.0",
"prop-types": "^15.6.0",
"rc-pagination": "^1.12.9",
"react": "^16.8.6",
"react-autocomplete": "^1.8.1",
"react-autosuggest": "^9.0.0",
"react-datepicker": "^1.6.0",
"react-dom": "^16.8.6",
"react-dropzone": "^6.1.0",
"react-modal": "^3.6.1",
"react-moment": "^0.8.1",
"react-redux": "^5.0.2",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.8",
"react-toastr": "^3.0.0",
"react-toggle-switch": "^2.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.13.2",
"sass-brunch": "^2.10.8",
"tar": "^4.4.8",
"upath": "^1.1.0",
"with-query": "^1.0.2",
"xml-objtree": "^0.24.2",
"xregexp": "^4.2.4"
},
"scripts": {
"start": "brunch watch --server",
"build": "brunch build -p",
"test": "jest --no-cache",
"testupdate": "jest -u --no-cache",
"debugtest": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
}
}