This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "sfcc-sample-apps",
"version": "1.0.0-alpha.1",
"description": "Sample Talon Application with Lightning Web Components",
"license": "MIT",
"private": true,
"config": {
"lwcVersion": "1.0.1",
"talonVersion": "0.18.12"
},
"scripts": {
"build": "lerna run build --stream",
"build:app": "lerna run build --scope storefront-lwc --stream",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"clean": "lerna run clean --stream",
"clean:stats": "lerna run clean:stats --stream",
"test": "lerna run test:unit --stream",
"test:watch": "lerna run test:unit:watch --stream",
"start": "yarn start:lwc",
"start:dev": "lerna run start:dev --scope storefront-lwc --stream",
"start:watch": "yarn start:lwc:watch",
"stop": "yarn stop:lwc",
"start:lwc": "lerna run start --scope storefront-lwc --stream",
"start:lwc:watch": "lerna run start:watch --scope storefront-lwc --stream",
"stop:lwc": "lerna run stop --scope storefront-lwc --stream"
},
"workspaces": {
"packages": [
"packages/sfcc-base",
"packages/@sfcc-core/*",
"packages/@sfcc-bff/*",
"packages/storefront-lwc"
],
"nohoist": [
"**/bootstrap",
"**/bootstrap/**",
"**/font-awesome"
]
},
"engines": {
"yarn": ">=1.10.1",
"node": ">=12.16 <13"
},
"dependencies": {
"lerna": "^3.17.0",
"loglevel": "^1.6.6"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"prettier": "1.19.1"
},
"resolutions": {
"@babel/types": "7.7.2",
"js-yaml": "3.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run lint"
}
},
"lint-staged": {
"*.{js,ts,mjs}": "prettier --write"
}
}