-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.29 KB
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
{
"name": "the-agent",
"version": "5.1.0",
"description": "The Agent · Our intelligent assistant",
"author": "AppifyHub <contact@appifyhub.com>",
"attribution": "Pasquale Vitiello <pasqualevitiello@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/appifyhub/the-agent.github.io.git"
},
"bugs": {
"url": "https://github.com/appifyhub/the-agent.github.io/issues"
},
"scripts": {
"autoprefixer": "postcss dist/css/*.css --use autoprefixer --no-map --replace",
"clean": "rimraf dist/{css/*,js/*,images/*}",
"imagemin": "imagemin src/images/* -o dist/images && cp -r src/images/features dist/images/",
"lint": "eslint src/js || true",
"lint-scss": "stylelint \"src/scss/*.scss\" || true",
"scss": "sass --style=compressed --no-source-map src/scss:dist/css",
"serve": "browser-sync start --server --files \"dist/css/*.css, dist/js/*.js, **/*.html, !node_modules/**/*.html\"",
"uglify": "mkdirp dist/js -p && uglifyjs src/js/*.js -m -c -o dist/js/main.min.js",
"build:css": "run-s lint-scss scss autoprefixer",
"build:js": "run-s lint uglify",
"build:images": "run-s imagemin",
"build": "run-s build:* copy-assets",
"watch:css": "onchange \"src/scss\" -- run-s build:css",
"watch:js": "onchange \"src/js\" -- run-s build:js",
"watch:images": "onchange \"src/images\" -- run-s build:images",
"watch": "run-p serve watch:*",
"copy-assets": "cp -r favicon/ dist/favicon/ && rm -rf dist/dist/ && cp -r dist/ tmp/ && mv tmp/ dist/dist/ && cp index.html favicon.ico dist/",
"postinstall": "run-s build copy-assets"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"imagemin-cli": "^8.0.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1",
"sass": "^1.72.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.2.1",
"uglify-js": "^3.17.4"
},
"homepage": "https://agent.appifyhub.com",
"main": ".eslintrc.js"
}