-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
33 lines (33 loc) · 1.3 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": "phrame",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"local:api": "nodemon -e yml,js,ts --watch ./.storage/config --watch ./api -q api/server.ts",
"local:frontend": "cd frontend && npm run serve",
"phrame": "npm run prod:migrate && npm run prod:generate && npm run prod:api",
"prod:migrate": "cd api && npx prisma migrate deploy && cd ..",
"prod:generate": "cd api && npx prisma generate > /dev/null && cd ..",
"prod:api": "nodemon -e yml,yaml --watch ./.storage/config -q api/server.js",
"version-bump": "npm version $VERSION --no-git-tag-version --allow-same-version && cd ./api && npm version $VERSION --no-git-tag-version --allow-same-version && cd ../frontend && npm version $VERSION --no-git-tag-version --allow-same-version",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/jakowenko/phrame.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jakowenko/phrame/issues"
},
"homepage": "https://github.com/jakowenko/phrame#readme",
"description": "",
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"husky": "^8.0.3"
}
}