-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.48 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.48 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
76
77
78
79
80
{
"name": "pwa-kit-react-sdk",
"version": "2.9.0",
"description": "A library that supports the isomorphic React rendering pipeline for Commerce Cloud Managed Runtime apps",
"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"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"scripts",
"ssr",
"utils",
"storefront-preview"
],
"publishConfig": {
"directory": "dist"
},
"scripts": {
"prepare": "npm run build",
"build": "cross-env NODE_ENV=production internal-lib-build build",
"build:watch": "watch 'npm run build' src/",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "internal-lib-build lint \"**/*.{js,jsx}\"",
"test": "internal-lib-build test",
"test:watch": "npm test -- --watch",
"test:inspect": "node --inspect-brk jest --runInBand",
"version": "node ./scripts/version.js",
"format": "internal-lib-build format \"**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesforceCommerceCloud/pwa-kit.git"
},
"homepage": "https://github.com/SalesforceCommerceCloud/pwa-kit/tree/develop/packages/pwa-kit-react-sdk#readme",
"bugs": {
"url": "https://github.com/SalesforceCommerceCloud/pwa-kit/issues"
},
"author": "cc-pwa-kit@salesforce.com",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@loadable/babel-plugin": "^5.15.3",
"@loadable/server": "^5.15.3",
"@loadable/webpack-plugin": "^5.15.2",
"@tanstack/react-query": "^4.28.0",
"cross-env": "^5.2.1",
"event-emitter": "^0.3.5",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.8.1",
"pwa-kit-runtime": "^2.9.0",
"react-ssr-prepass": "^1.5.0",
"react-uid": "^2.3.2",
"serialize-javascript": "^6.0.1",
"svg-sprite-loader": "^6.0.11",
"watch": "1.0.2"
},
"devDependencies": {
"@loadable/component": "^5.15.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"enzyme": "^3.11.0",
"internal-lib-build": "^2.9.0",
"node-html-parser": "^3.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "5.2.1",
"react-router-dom": "^5.3.4",
"regenerator-runtime": "^0.13.11",
"sinon": "^13.0.2",
"supertest": "^4.0.2"
},
"peerDependencies": {
"@loadable/component": "^5.15.0",
"react": ">=16.14 || <18",
"react-dom": ">=16.14 || <18",
"react-helmet": "6",
"react-router-dom": "^5.1.2"
}
}