-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@salesforce/pwa-kit-runtime",
"version": "3.9.0-dev",
"description": "The PWAKit Runtime",
"homepage": "https://github.com/SalesforceCommerceCloud/pwa-kit/tree/develop/packages/pwa-kit-runtime#readme",
"bugs": {
"url": "https://github.com/SalesforceCommerceCloud/pwa-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesforceCommerceCloud/pwa-kit.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "cc-pwa-kit@salesforce.com",
"files": [
"LICENSE",
"scripts",
"ssr",
"utils"
],
"scripts": {
"build": "cross-env NODE_ENV=production internal-lib-build build",
"build:watch": "nodemon --watch 'src/**' --exec 'npm run build'",
"format": "internal-lib-build format \"**/*.{js,jsx}\"",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "pwa-kit-dev lint .",
"prepare": "npm run build",
"test": "internal-lib-build test",
"version": "node ./scripts/version.js"
},
"dependencies": {
"@loadable/babel-plugin": "^5.15.3",
"aws-sdk": "^2.1354.0",
"aws-serverless-express": "3.4.0",
"cosmiconfig": "8.1.3",
"cross-env": "^5.2.1",
"express": "^4.19.2",
"header-case": "1.0.1",
"http-proxy-middleware": "^2.0.6",
"merge-descriptors": "^1.0.1",
"morgan": "^1.10.0",
"semver": "^7.5.2",
"set-cookie-parser": "^2.6.0",
"whatwg-encoding": "^1.0.5"
},
"devDependencies": {
"@loadable/component": "^5.15.3",
"@salesforce/pwa-kit-dev": "3.9.0-dev",
"@serverless/event-mocks": "^1.1.1",
"aws-lambda-mock-context": "^3.2.1",
"fs-extra": "^11.1.1",
"internal-lib-build": "3.9.0-dev",
"nock": "^13.3.0",
"nodemon": "^2.0.22",
"sinon": "^13.0.2",
"superagent": "^6.1.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"@salesforce/pwa-kit-dev": "3.9.0-dev"
},
"peerDependenciesMeta": {
"@salesforce/pwa-kit-dev": {
"optional": true
}
},
"engines": {
"node": "^16.11.0 || ^18.0.0 || ^20.0.0 || ^22.0.0",
"npm": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"publishConfig": {
"directory": "dist"
}
}