-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "geogenesis",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "turbo run test",
"build": "turbo run build",
"codegen": "turbo run codegen",
"lint": "turbo run lint",
"format": "turbo run format",
"dev": "turbo run dev",
"clean": "turbo run clean && rimraf \"**/.turbo\"",
"docker:build": "docker compose build --build-arg TURBO_TEAM --build-arg TURBO_TOKEN",
"docker:up": "docker compose up",
"docker:down": "docker compose down -v --rmi all",
"docker:clean": "rimraf build",
"docker": "pnpm docker:down && pnpm docker:clean && pnpm docker:build && pnpm docker:up",
"clean-node-modules": "rimraf \"**/node_modules\""
},
"author": "Byron Guina",
"license": "ISC",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-turbo": "^0.0.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"turbo": "^1.10.6"
},
"packageManager": "pnpm@9.15.4"
}