-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@nacelle/nacelle-js",
"version": "0.0.0",
"description": "Nacelle-powered, JavaScript-fueled packages and example projects to elevate your composable commerce experience",
"scripts": {
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"create": "lerna create",
"changed": "lerna changed",
"format": "lerna run format",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run build --no-private",
"test:ci": "jest --clearCache && lerna run test:ci",
"changeset": "changeset",
"postinstall": "lerna bootstrap",
"version": "changeset version && lerna run --parallel lockfile:update",
"release": "npm run build && changeset publish"
},
"engines": {
"node": ">=14.14",
"npm": ">=7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getnacelle/nacelle-js.git"
},
"keywords": [
"Nacelle",
"eCommerce",
"Headless",
"JAMstack"
],
"author": "Nacelle Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/getnacelle/nacelle-js/issues"
},
"homepage": "https://github.com/getnacelle/nacelle-js#readme",
"devDependencies": {
"@rushstack/eslint-patch": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-vue": "^9.17.0",
"graphql": "^15.0.0",
"graphql-config": "^5.0.3",
"husky": "^7.0.0",
"jest": "^27.0.1",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^3.0.3",
"tslib": "^2.3.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix",
"*.{js,jsx,ts,tsx,vue,css,md}": "prettier --write"
},
"dependencies": {
"@changesets/cli": "^2.24.0"
},
"volta": {
"node": "18.18.2"
}
}