-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.12 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
{
"name": "weather-service",
"version": "1.0.0",
"description": "Weather Service App",
"homepage": "https://github.com/bnjmnrsh-projs/Weather-Service#readme",
"bugs": {
"url": "https://github.com/bnjmnrsh-projs/Weather-Service/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bnjmnrsh-projs/Weather-Service.git"
},
"license": "MIT",
"author": {
"name": "[email protected]",
"website": "https://bnjmnrsh-projs.github.io/Weather-Service/"
},
"main": "src/app.js",
"scripts": {
"build:dirty": "npm-run-all -p js css svg img copy",
"build": "npm-run-all -s clean build:dirty",
"clean": "recursive-delete 'docs'",
"css": "node sass.js",
"copy": "recursive-copy 'src/copy' 'docs'",
"img": "imagemin src/img/* --out-dir=docs/img --plugin=pngquant --plugin=mozjpeg --plugin=pngcrush --plugin=zopfli",
"js": "rollup --config",
"lint": "npm-run-all -p lint:*",
"lint:js": "eslint src --ext .js,.json,.json5,.yaml,.yml,.toml",
"lint-fix:js": "eslint src --ext .js,.json,.json5,.yaml,.yml,.toml --fix",
"lint:scss": "stylelint src/scss/**/*.scss",
"lint-fix:scss": "stylelint src/**/*.scss --fix",
"check:stylelint-prettier-config": "stylelint-config-prettier-check",
"check:eslint-prettier-config": "eslint-config-prettier src/js/app.js",
"server": "npm-run-all -p watch server-start",
"server-start": "browser-sync --config './.browsersyncrc.js' start",
"svg": "svgo -f src/svg docs/svg -r -q --disable=removeViewBox,removeTitle",
"watch": "npm-run-all -p build watch:*",
"watch:copy": "chokidar './src/copy/**/*.*' -c 'npm run copy'",
"watch:css": "chokidar './src/**/*.scss' -c 'npm run css'",
"watch:img": "chokidar './src/img/**/*.*' -c 'npm run img'",
"watch:js": "chokidar './src/**/*.js' -c 'npm run js'",
"watch:svg": "chokidar './src/**/*.svg' -c 'npm run svg'"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"browserslist": "*",
"chokidar-cli": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-json-schema-validator": "^1.2.6",
"eslint-plugin-jsonc": "^1.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"imagemin-cli": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngcrush": "^6.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-zopfli": "^6.0.0",
"npm-run-all": "^4.1.5",
"recursive-fs": "^2.1.0",
"rollup": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.26.5",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-high-performance-animation": "^1.5.2",
"stylelint-no-unsupported-browser-features": "^5.0.1",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"stylelint-use-nesting": "^3.0.0",
"svgo": "^1.3.2"
}
}