-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "midgard-core",
"version": "0.1.2",
"description": "Frontend core module providing common capabilities",
"main": "./lib/main.js",
"scripts": {
"clean": "rimraf lib",
"test": "karma start --single-run --browsers ChromeHeadlessNoSandbox karma.conf.js",
"test:watch": "karma start && karma run karma.conf.js",
"lint": "eslint src test",
"build": "npm run clean && cross-env BABEL_ENV=production babel src --out-dir lib"
},
"files": [
"lib",
"src"
],
"author": "Alex Percsi",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.4",
"rimraf": "^2.6.2",
"webpack": "^4.18.0"
},
"dependencies": {
"axios": "^0.18.0",
"axios-cancel": "^0.2.2",
"redux": "^4.0.0",
"redux-observable": "^1.0.0",
"reselect": "^4.0.0",
"rxjs": "6.3.2"
}
}