This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 3.04 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "oddsite",
"version": "3.0.0",
"homepage": "https://oddbird.net/",
"title": "OddSite",
"engines": {
"node": "12.13.1",
"yarn": "1.19.2"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"accoutrement": "^2.1.2",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"beeper": "^2.0.0",
"browser-sync": "^2.26.7",
"chai": "^4.2.0",
"chai-jquery": "^2.1.0",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.4.8",
"css-loader": "^3.3.0",
"del": "^5.1.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"extend": "^3.0.2",
"fancy-log": "^1.3.3",
"file-loader": "^5.0.2",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-download-stream": "^0.0.19",
"gulp-eslint": "^6.0.0",
"gulp-prettier-plugin": "^1.3.0",
"gulp-rename": "^2.0.0",
"gulp-stylelint": "^10.0.0",
"gulp-svg-symbols": "^3.2.3",
"gulp-svgmin": "^2.2.0",
"husky": "^3.1.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.1.0",
"img-loader": "^3.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jquery": "^3.4.1",
"jquery-dotimeout": "github:oddbird/jquery-dotimeout#v1.0.0",
"karma": "^4.4.1",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "4.0.2",
"lint-staged": "^9.5.0",
"lodash.set": "^4.3.2",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.2",
"node-sass": "^4.13.0",
"nyc": "^14.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"plugin-error": "^1.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"raw-loader": "4.0.0",
"sass-loader": "^8.0.0",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.1",
"sassdoc-theme-herman": "^3.0.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"stylelint": "^12.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.13.0",
"touch": "^3.1.0",
"webpack": "^4.41.2",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/oddbird/oddsite.git"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "./bin/prepare-commit-msg"
}
},
"lint-staged": {
"{static/js/,test/}**/*.js": [
"prettier --write",
"eslint",
"git add"
],
"{gulpfile,karma*,postcss.config,webpack*}.js": [
"prettier --write",
"eslint",
"git add"
],
"static/sass/**/*.scss": [
"prettier --write",
"stylelint",
"git add"
],
"{package.json,*.yml}": [
"prettier --write",
"git add"
]
}
}