-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "bootstrap-webpack-jquery-boilerplate",
"license": "MIT",
"author": "xxhomey19",
"homepage": "https://xxhomey19.github.io/bootstrap-webpack-jquery-boilerplate/",
"repository": {
"type": "git",
"url": "https://github.com/xxhomey19/bootstrap-webpack-jquery-boilerplate/tree/master"
},
"bugs": {
"url": "https://github.com/xxhomey19/bootstrap-webpack-jquery-boilerplate/issues"
},
"version": "1.3.0",
"scripts": {
"build": "webpack -p --progress --mode production --config webpack.config.js",
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "cross-env NODE_ENV=dev webpack-serve --open --config webpack.config.js",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"aos": "^3.0.0-beta.6",
"jquery": "^3.3.1",
"popper.js": "^1.14.4",
"purecss": "^1.0.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jquery": "^1.3.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.7",
"husky": "^1.0.0-rc.14",
"image-webpack-loader": "^4.3.1",
"install": "^0.12.1",
"lint-staged": "^7.3.0",
"node-sass": "^4.7.2",
"prettier": "^1.14.3",
"prettier-package-json": "^2.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2"
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}