-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.34 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
{
"name": "sikka-buya",
"version": "0.3.46",
"description": "A digital application for displaying and exploring islamic coinage.",
"main": "index.js",
"repository": "git@github.com:Severino/sikka-buya.git",
"author": "Severin Opel",
"license": "MIT",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"frontend": "cd frontend && npm run serve",
"backend": "cd backend && npm run dev",
"test": "cd test && npm run test",
"docs": "cd docs && npm run dev",
"migrate": "cd backend && node scripts/migrate.js",
"update-version": "node ./shared/scripts/update_version_number.js",
"git:tag": "node ./shared/scripts/update_git_tag.js",
"deploy:backend": "cd backend && pm2 delete all && npm run pm2",
"deploy:frontend": "cd frontend && ./deploy.sh",
"deploy": "npm run deploy:backend && npm run deploy:frontend",
"postinstall": "run-script-os",
"postinstall:windows": "(cd frontend && yarn install) && (cd backend && yarn install) && (cd test && yarn install)",
"postinstall:default": "(cd frontend && yarn install); (cd backend && yarn install); (cd test && yarn install)"
},
"devDependencies": {
"concurrently": "^7.1.0",
"run-script-os": "^1.1.6",
"wait-on": "^6.0.1"
}
}