forked from cobudget/cobudget
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.45 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
{
"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": "cd ui && sudo yarn dev",
"test:open": "cypress open",
"test:run": "cypress run --browser chrome --headless",
"test": "./scripts/wait.sh 3000 && yarn test:switch-env && yarn test:run",
"typecheck": "yarn --cwd ui typecheck",
"test:migrate": "./scripts/wait.sh 35432 && cd ui && yarn migrate",
"test:start-db": "cd ui && docker-compose up",
"test:switch-env": "cp ./ui/.env.test ./ui/.env.local"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"concurrently": "3.5.1",
"cypress": "11.1.0",
"cypress-terminal-report": "^4.1.2",
"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",
"jsonwebtoken": "^8.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}