-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"private": true,
"name": "imperial-kitchen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev:mobile": "yarn workspace mobile dev",
"dev:server": "yarn workspace server dev",
"build:server": "yarn workspace server build",
"prod:server": "yarn workspace server prod",
"docker:dev": "yarn docker:dev:up && yarn docker:dev:watch",
"docker:dev:up": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build",
"docker:dev:watch": "docker compose -f docker-compose.yml -f docker-compose.dev.yml watch",
"pre build:android": "yarn workspace mobile pre build:android",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"food order",
"imperial kitchen",
"food",
"kitchen"
],
"author": "dribble-njr <[email protected]>",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"repository": "https://github.com/dribble-njr/imperial-kitchen.git"
}