-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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": "nimara-ecommerce",
"license": "BSD-3-Clause",
"version": "1.0.0",
"author": {
"name": "Mirumee Labs",
"email": "hello@mirumee.com",
"url": "https://mirumee.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/mirumee/nimara-ecommerce"
},
"private": true,
"packageManager": "pnpm@10.28.1",
"engines": {
"node": "22.x"
},
"scripts": {
"build": "dotenv -- turbo run build",
"build:storefront": "pnpm run build --filter=storefront",
"build:stripe": "pnpm run build --filter=stripe",
"build:docs": "pnpm run build --filter=docs",
"start": "dotenv -- turbo run start",
"start:storefront": "pnpm run start --filter=storefront",
"start:docs": "pnpm run start --filter=docs",
"codegen": "dotenv -- turbo run codegen",
"dev": "dotenv -- turbo run dev",
"dev:storefront": "pnpm run dev --filter=storefront",
"dev:stripe": "pnpm run dev --filter=stripe",
"dev:docs": "pnpm run dev --filter=docs",
"test": "dotenv -- turbo run test",
"test:watch": "dotenv -- turbo run test:watch",
"test:e2e": "dotenv -- turbo run test:e2e",
"prepare": "husky",
"format": "pnpm prettier --write '**/*.{js,ts,tsx,json,md}'",
"format:check": "pnpm prettier --check '**/*.{js,ts,tsx,json,md}'"
},
"devDependencies": {
"commitizen": "4.3.1",
"dotenv-cli": "8.0.0",
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"husky": "9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"turbo": "2.5.4"
},
"resolutions": {
"graphql": "16.10.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true,
"disableSubjectLowerCase": true,
"maxHeaderWidth": 150
}
}
}