-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.34 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
{
"name": "internal-lib-build",
"version": "3.9.0-dev",
"private": true,
"description": "Build tools for *libraries* in the monorepo",
"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",
"bin": {
"internal-lib-build": "./bin/internal-lib-build.js"
},
"files": [
"bin",
"configs"
],
"scripts": {
"format": "node ./bin/internal-lib-build.js format \"**/*.{js,jsx}\"",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "pwa-kit-dev lint ."
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/parser": "^7.21.3",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@babel/runtime-corejs2": "^7.21.0",
"@babel/traverse": "^7.23.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.3.0",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"babel-plugin-formatjs": "10.4.0",
"commander": "^9.5.0",
"jest": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-jsdom-global": "^2.0.4",
"jest-fetch-mock": "^2.1.2",
"prettier": "^2.8.6",
"raf": "^3.4.1",
"regenerator-runtime": "^0.13.11",
"replace-in-file": "^6.3.5",
"rimraf": "2.7.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@salesforce/pwa-kit-dev": "3.9.0-dev",
"npm-packlist": "^4.0.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"typescript": "4.9.5"
},
"peerDependenciesMeta": {
"typescript": {
"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"
}
}