-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "myproject",
"version": "0.0.0",
"description": "Assets for myproject",
"author": "The Author <author@example.com>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"release": "git fetch --tags -f && standard-version",
"format": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx,json}\""
},
"dependencies": {
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@commitlint/config-conventional": "^13.1.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"commitlint": "^13.1.0",
"core-js": "^3.16.2",
"date2string": "^1.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-header": "^2.0.9",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "^13.0.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"postcss-preset-env": "^6.7.0",
"prettier-stylelint": "^0.4.2",
"regenerator-runtime": "^0.13.9",
"sass": "^1.38.0",
"standard-version": "^9.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"src/**/*.s+(a|c)ss": [
"stylelint --fix",
"git add"
]
}
}