-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.19 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.19 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "railguard",
"description": "MonoRepo for RailGuard app",
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"test:web": "yarn workspace @railguard/web test",
"test:api": "yarn workspace @railguard/api test",
"test:mobile": "yarn workspace @railguard/mobile test",
"dev:web": "yarn workspace @railguard/web start",
"dev:api": "yarn workspace @railguard/api dev",
"dev:mobile": "yarn workspace @railguard/mobile start",
"build:types": "yarn workspace @railguard/types build",
"build:libs": "yarn workspace @railguard/types build && yarn workspace @railguard/schema build",
"build": "yarn workspaces run -R build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"type-check": "yarn workspaces run type-check",
"clean": "rm -rf node_modules && rm -rf apps/*/node_modules && rm -rf libs/*/node_modules",
"clean:cache": "yarn clean && rm -rf ~/.cache/yarn && rm -rf apps/*/.expo && rm -rf apps/*/dist && rm -rf apps/*/build",
"clean:all": "yarn clean && yarn clean:cache && rm -rf yarn.lock && rm -rf apps/*/yarn.lock && rm -rf libs/*/yarn.lock",
"reset": "yarn clean && yarn install",
"hard-reset": "yarn clean:all && yarn install",
"prepare": "husky"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"pino-pretty": "^13.0.0",
"prettier": "^3.0.0",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.0"
},
"dependencies": {
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0"
}
}