forked from awslabs/visual-asset-management-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.11 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
{
"name": "project-root",
"version": "1.4.0",
"license": "Apache-2.0",
"scripts": {
"buildanddeploy.dev": "npm run build && npm run deploy.dev",
"build": "cd web && yarn install && npm run build",
"deploy.dev": "cd infra && npm install && npm run deploy.dev",
"deploy.alpha": "cd infra && npm install && npm run deploy.alpha",
"deploy.bms": "cd infra && npm install && npm run deploy.bms",
"release": "standard-version",
"prettier-check": "prettier -c --config .prettierrc -u --ignore-path .prettierignore .",
"prettier-fix": "prettier -w --config .prettierrc -u --ignore-path .prettierignore .",
"lint": "eslint web/src infra/lib infra/bin infra/test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.7",
"standard-version": "^9.3.2"
},
"dependencies": {
"minimist": "^1.2.7"
},
"resolutions": {
"semver": "^7.5.2"
}
}