-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "carouseljs",
"version": "1.0.0",
"description": "a carousel using JavaScript es6",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack -p --config ./webpack/webpack.config.js --display-error-details",
"dev": "webpack-dev-server -d --config ./webpack/webpack.config.js --display-error-details --hot --inline --open"
},
"author": "Mohcine NAZRHAN",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-hot-loader": "^1.4.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.7",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^4.4.0",
"img-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^7.0.3",
"postcss": "^8.4.31",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.2.0",
"postcss-scss": "^2.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-webpack-plugin": "^0.10.5",
"url-loader": "^1.1.2",
"webpack": "^5.94.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^4.11.1"
}
}