-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"version": "0.0.0-development",
"license": "MIT",
"main": "bin/sfcc-playground.js",
"bin": {
"sfcc-playground": "bin/sfcc-playground.js"
},
"files": [
"bin",
"server/src",
"client/build"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "node server/src/index.js",
"dev": "concurrently yarn:dev:*",
"dev:api": "nodemon -q server/src/index.js",
"dev:ui": "cd client; yarn start; cd ..",
"build:ui": "cd client; yarn build; cd ..",
"lint": "prettier --check bin server client __tests__ __mocks__",
"test": "jest",
"test:watch": "jest --watch",
"posttest": "npm run format",
"format": "prettier --loglevel warn --write bin server client __tests__ __mocks__",
"semantic-release": "semantic-release",
"prepare": "husky install; yarn install-deps",
"install-deps": "cd client; yarn --frozen-lockfile; cd .."
},
"name": "sfcc-playground",
"author": "Michal Vyšinský",
"description": "Salesforce Commerce Cloud Playground simulates SFCC server behaviour so you can develop controllers locally, use nice debug tools etc.",
"keywords": [
"sfcc",
"salesforce",
"playground",
"express",
"developer experience"
],
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/xml2js": "^0.4.11",
"concurrently": "^7.2.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": ">=10",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/vysinsky/sfcc-playground.git"
},
"dependencies": {
"cosmiconfig": "^7.0.1",
"deepmerge": "^4.2.2",
"dw-api-mock": "git+https://github.com/SalesforceCommerceCloud/dw-api-mock.git",
"express": "^4.18.1",
"module-alias": "^2.2.2",
"xml2js": "^0.4.23"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md}": "yarn format"
}
}