-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "cobbl",
"version": "0.0.0",
"description": "",
"author": "",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"api",
"app",
"packages/*"
],
"scripts": {
"up": "docker-compose up -d && pm2 start ecosystem.config.js",
"down": "pm2 delete ecosystem.config.js && docker-compose down",
"restart": "pm2 delete ecosystem.config.js && pm2 start ecosystem.config.js",
"log": "pm2 log",
"pretest": "NODE_ENV=test npm run prisma -w api -- migrate reset -f --skip-seed --skip-generate",
"test": "jest --runInBand",
"lint": "prettier --check . && eslint . && turbo run lint",
"reset-database": "npm run -w api reset-database",
"version": "lerna version"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"graphql": "^16.5.0",
"jest": "^28.1.0",
"lerna": "^5.0.0",
"pm2": "^5.2.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-prisma": "^3.14.0",
"ts-jest": "^28.0.4",
"turbo": "^1.2.16",
"typescript": "^4.7.3"
}
}