-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "takgov-theme",
"version": "1.0.2",
"description": "Custom HTML/CSS/JS templates for the TAK.gov web application",
"main": "index.html",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack/webpack.config.dev.js --open",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js --colors",
"test": "jest",
"lint": "lint-staged && pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged && jest"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
],
"src/**/*.css": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "[email protected]:takgov/tak.gov-theme.git"
},
"keywords": [
"bootstrap",
"webpack"
],
"author": "Mindgrub Technologies",
"license": "MIT",
"contributors": [
"Twitter, Inc."
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bootstrap": "5.0.0-beta1",
"bootstrap-icons": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "2.6.11",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.17.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"webpack": "^4.43.0",
"copy-webpack-plugin": "^5.1.1",
"webpack-fix-style-only-entries": "^0.5.1",
"mini-css-extract-plugin": "^0.9.0",
"popper.js": "1.16.0"
}
}