forked from cobudget/cobudget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.24 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
{
"name": "dreams",
"scripts": {
"dev": "run-p db:up api:start ui:dev",
"api:start": "cd api && npm run start",
"ui:dev": "cd ui && npm run dev",
"db:up": "docker-compose up",
"db:reset": "docker-compose down && docker-compose rm -f",
"postinstall": "cd ui && yarn",
"lint": "prettier --ignore-path .gitignore --check . && eslint . && yarn typecheck",
"fix": "prettier --ignore-path .gitignore --write . && eslint . --fix && yarn typecheck",
"test:run:servers": "sudo pwd && concurrently \"cd ui/ && sudo docker-compose up\" \"npm run test:run --prefix ui\"",
"test:open": "cypress open",
"test:run": "cypress run",
"test": "./scripts/wait.sh 3001 && npm run test:run",
"typecheck": "yarn --cwd ui typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"concurrently": "3.5.1",
"cypress": "6.3.0",
"cypress-terminal-report": "2.4.0",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"typescript": "4.4.3"
},
"dependencies": {}
}