-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.54 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
{
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^2.1.0",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^2.0.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.3.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"node-sass": "^4.13.1",
"null-loader": "^0.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"sinon": "^8.1.0",
"size-plugin": "^1.1.2",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"scripts": {
"dev": "webpack --config webpack.config.js --watch",
"build": "webpack -p",
"build-dev": "webpack",
"test": "./node_modules/karma/bin/karma start --single-run",
"test-ci": "./node_modules/karma/bin/karma start --browsers Firefox --single-run",
"test-dev": "./node_modules/karma/bin/karma start",
"codecov": "codecov"
}
}