-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.81 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "veritext-replacement-app",
"version": "0.0.0",
"license": "UNLICENSED",
"engines": {
"node": ">=18.12.1",
"yarn": ">=1.22.19"
},
"private": true,
"workspaces": [
"fe",
"be"
],
"scripts": {
"fe:start": "yarn --cwd fe start",
"fe:test": "yarn --cwd fe test",
"fe:build": "yarn --cwd fe build",
"be:dev": "yarn --cwd be dev",
"be:server": "node ./be/server.js",
"db:seed": "yarn --cwd be seed",
"db:generate": "yarn --cwd be generate",
"db:migrate:dev": "yarn --cwd be migrate:dev",
"db:migrate:prod": "yarn --cwd be migrate:deploy",
"db:reset": "yarn --cwd be migrate:reset",
"db:gui": "yarn --cwd be gui",
"deploy": "yarn && NODE_ENV=production yarn fe:build && NODE_ENV=production yarn be:server",
"dev": "concurrently --kill-others --names \"FE,BE\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn fe:start\" \"yarn be:dev\"",
"setup": "yarn && cp fe/config/application.template.yml fe/config/application.yml && cp be/prisma/env.template be/prisma/.env",
"setup:ci": "yarn install --immutable && cp fe/config/application.template.yml fe/config/application.yml && cp be/prisma/env.template be/prisma/.env",
"test:integration": "cypress run",
"test": "yarn && node scripts/test-suite.mjs",
"prepare": "husky install",
"lint": "yarn eslint --fix --ext .js,.jsx,.json . && yarn prettier --write .",
"lint:ci": "yarn eslint --fix --ext .js,.jsx --max-warnings=0 ."
},
"devDependencies": {
"@launchpadlab/eslint-config": "^3.0.1",
"@launchpadlab/prettier-config": "^1.0.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7"
}
}