-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
34 lines (34 loc) · 1.55 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
{
"name": "scanservjs",
"version": "3.0.3",
"description": "scanservjs is a simple web-based UI for SANE which allows you to share a scanner on a network without the need for drivers or complicated installation.",
"scripts": {
"build:version": "npm --allow-same-version --no-git-tag-version version $npm_package_version --workspaces",
"build": "npm run build:version && npm run build --workspaces && node build.js --assemble",
"clean": "npm run clean:dist && npm run clean:modules && npm run clean:debian && npm run clean:jekyll",
"clean:debian": "rm -rf ./debian",
"clean:dist": "rm -rf ./dist && npm run clean:dist --workspaces",
"clean:jekyll": "rm -rf ./.bundle ./.jekyll-cache ./_site .jekyll-metadata",
"clean:modules": "rm -rf ./node_modules && npm run clean:modules --workspaces",
"dev": "concurrently 'npm run dev --workspace app-ui' 'npm run dev --workspace app-server'",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspace=app-server",
"util:docker-build": "docker build --target scanservjs-core --tag scanservjs-image .",
"util:jekyll-serve": "bundle config set --local path ~/.gem && bundle install && bundle exec jekyll serve",
"util:missing-translations": "npm run missing-translations --workspace=app-ui"
},
"devDependencies": {
"concurrently": "8.2.1",
"fs-extra": "11.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sbs20/scanservjs"
},
"author": "Sam Strachan",
"license": "GPL-2.0",
"workspaces": [
"app-server",
"app-ui"
]
}