-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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": "pwa-kit-runtime",
"version": "2.9.0",
"description": "The PWAKit Runtime",
"repository": {
"type": "git",
"url": "git+https://github.com/SalesforceCommerceCloud/pwa-kit.git"
},
"homepage": "https://github.com/SalesforceCommerceCloud/pwa-kit/tree/develop/packages/pwa-kit-runtime#readme",
"bugs": {
"url": "https://github.com/SalesforceCommerceCloud/pwa-kit/issues"
},
"license": "SEE LICENSE IN LICENSE",
"author": "cc-pwa-kit@salesforce.com",
"files": [
"LICENSE",
"scripts",
"ssr",
"utils"
],
"scripts": {
"format": "internal-lib-build format \"**/*.{js,jsx}\"",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "internal-lib-build lint .",
"prepare": "npm run build",
"build": "cross-env NODE_ENV=production internal-lib-build build",
"build:watch": "watch 'npm run build' src/",
"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": "0.21.0",
"merge-descriptors": "^1.0.1",
"morgan": "^1.10.0",
"semver": "^7.3.8",
"set-cookie-parser": "^2.6.0",
"ua-parser-js": "^1.0.34",
"whatwg-encoding": "^1.0.5"
},
"devDependencies": {
"@loadable/component": "^5.15.3",
"@serverless/event-mocks": "^1.1.1",
"aws-lambda-mock-context": "^3.2.1",
"fs-extra": "^10.1.0",
"internal-lib-build": "^2.9.0",
"nock": "^13.3.0",
"sinon": "^13.0.2",
"superagent": "^6.1.0",
"supertest": "^4.0.2",
"watch": "1.0.2"
},
"peerDependencies": {
"pwa-kit-dev": "^2.9.0"
},
"peerDependenciesMeta": {
"pwa-kit-dev": {
"optional": true
}
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || ^18.0.0 || ^20.0.0",
"npm": "^6.14.4 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"publishConfig": {
"directory": "dist"
}
}