-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 777 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 777 Bytes
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
{
"private": true,
"license": "Apache-2.0",
"scripts": {
"install": "yarn --cwd backend && yarn --cwd frontend",
"clean": "rm -rf node_modules deploy yarn.lock .env && yarn --cwd backend clean && yarn --cwd frontend clean ",
"build": "yarn --cwd backend build && yarn --cwd frontend build",
"deploy": "gulp deploy",
"local": "gulp set --env=local",
"dev": "gulp set --env=dev",
"build-local": "yarn local && yarn build",
"deploy-local": "yarn build-local && yarn deploy"
},
"devDependencies": {
"@types/gulp": "^4.0.10",
"@types/node": "^18.11.12",
"gulp": "^4.0.2",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}