-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 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
{
"name": "rslang",
"version": "1.0.0",
"description": "rslang",
"main": "index.js",
"browserslist": [
"> 0.25%, not dead"
],
"scripts": {
"dev": "webpack-dev-server --history-api-fallback --inline --progress --open",
"build": "npm run clear -s && webpack --progress",
"lint": "eslint ./src/js/",
"clear": "del-cli dist",
"fix": "eslint ./src/js/ --fix",
"test": "jest"
},
"author": "Viktor Sipach",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.6.0",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.2.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del-cli": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"chart.js": "^2.9.3",
"core-js": "^2.5.7"
}
}