-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.45 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
49
50
51
52
53
54
{
"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@9.3.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "dotenv -- turbo run build",
"build:storefront": "pnpm run build --filter=storefront",
"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:docs": "pnpm run dev --filter=docs",
"test": "dotenv -- turbo run test",
"test:e2e": "dotenv -- turbo run test:e2e",
"prepare": "husky"
},
"devDependencies": {
"commitizen": "4.3.0",
"dotenv-cli": "7.4.2",
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"husky": "9.1.6",
"lint-staged": "^15.2.7",
"turbo": "2.1.2"
},
"resolutions": {
"graphql": "16.9.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true,
"disableSubjectLowerCase": true,
"maxHeaderWidth": 150
}
}
}