-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.61 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.22.17",
"@types/callsite": "^1.0.32",
"@types/jest": "^29.5.4",
"@types/node": "^18.17.15",
"@types/parcel-bundler": "^1.12.1",
"@types/webpack": "^4.41.12",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"coveralls": "^3.1.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"html-webpack-plugin": ">=4 <5",
"jest": "^29.6.4",
"lerna": "^7.2.0",
"parcel": "^2.9.3",
"parcel-bundler": "^1.12.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"webpack": ">=4.39.0 <5"
},
"workspaces": [
"packages/*"
],
"scripts": {
"pretest": "npm run --workspace @pwa-manifest/core build-unchecked && npm run --workspace parcel-transformer-pwa-manifest build-unchecked && npm run --workspace parcel-namer-pwa-manifest build-unchecked",
"test": "jest && cat ./coverageReport/lcov.info | coveralls",
"publish-all": "lerna publish from-package"
},
"dependencies": {
"@pwa-manifest/core": "link:packages/core",
"@pwa-manifest/potrace": "link:packages/potrace",
"parcel-config-pwa-manifest": "link:packages/parcel-config-pwa-manifest",
"parcel-namer-pwa-manifest": "link:packages/parcel-namer-pwa-manifest",
"parcel-plugin-pwa-manifest": "link:packages/parcel-plugin-pwa-manifest",
"parcel-transformer-pwa-manifest": "link:packages/parcel-transformer-pwa-manifest",
"webpack-plugin-pwa-manifest": "link:packages/webpack-plugin-pwa-manifest"
}
}