This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "A simple and reliable webpack starter kit",
"main": "index.js",
"private": true,
"scripts": {
"test": "yarn lint && yarn jest",
"test:watch": "yarn lint && yarn jest --watch",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint \"./src/**/*.js\" --fix",
"lint:css": "stylelint \"src/**/*.{css,less,scss}\" --fix",
"jest": "jest",
"start": "webpack-dev-server --progress --config webpack.dev.js",
"build": "webpack --progress --config webpack.prod.js"
},
"dependencies": {
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"autoprefixer": "9.7.3",
"babel-loader": "8.0.6",
"browserslist": "^4.8.3",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.4.1",
"deep-object-diff": "1.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"favicons-webpack-plugin": "3.0.0",
"file-loader": "5.0.2",
"html-webpack-plugin": "3.2.0",
"inquirer": "7.0.3",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.0",
"normalize.css": "8.0.1",
"postcss-loader": "3.0.0",
"sass-loader": "8.0.0",
"style-loader": "1.1.2",
"three": "0.112.1",
"url-loader": "3.0.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.19.1",
"jest": "24.9.0",
"source-map-loader": "0.2.4",
"stylelint": "12.0.1",
"stylelint-config-standard": "19.0.0",
"stylelint-scss": "3.13.0",
"webpack-dev-server": "3.10.1"
}
}