-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "papua",
"description": "Setup and build modern web applications.",
"version": "0.0.0-development",
"repository": "github:tobua/papua",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"build": "padua build",
"postinstall": "skip-local-postinstall ./dist/installation.js",
"start": "padua watch",
"test": "vitest run --pool=threads --poolOptions.threads.singleThread --dir test"
},
"padua": {
"entry": [
"installation.ts",
"index.ts",
"cli.ts"
],
"esbuild": {
"platform": "node",
"format": "esm",
"target": "node18"
},
"tsconfig": {
"compilerOptions": {
"target": "es2022"
}
}
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@manypkg/find-root": "^2.2.1",
"@npmcli/map-workspaces": "^3.0.6",
"@rspack/core": "^0.6.1",
"@rspack/dev-server": "^0.6.1",
"@rspack/plugin-react-refresh": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"css-loader": "^7.1.1",
"deepmerge-ts": "^5.1.0",
"ejs": "^3.1.9",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"fast-glob": "^3.3.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"get-port": "^7.1.0",
"global-dirs": "^4.0.0",
"inject-manifest-plugin": "^0.5.1",
"lodash.isplainobject": "^4.0.6",
"logua": "^3.0.3",
"node-html-parser": "^6.1.13",
"open": "^10.1.0",
"p-each-series": "^3.0.0",
"pakag": "^3.1.3",
"parse-gitignore": "^2.0.0",
"postcss-styled": "^0.34.0",
"postcss-syntax": "^0.36.2",
"prettier": "^3.2.5",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^9.0.0",
"prompts": "^2.4.2",
"react-refresh": "^0.14.0",
"serve-handler": "^6.1.5",
"skip-local-postinstall": "^2.0.4",
"style-loader": "^4.0.0",
"stylelint": "^16.3.1",
"stylelint-config-recommended": "^14.0.0",
"typescript": "^5.4.5",
"url-join": "^5.0.0",
"webpack": "^5.91.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/serve-handler": "^6.1.4",
"cypress": "^13.7.3",
"jest-fixture": "^4.1.0",
"padua": "^4.0.1",
"react": "^18.2.0",
"tcp-port-used": "^1.0.2",
"tobua": "^0.3.0",
"vitest": "^1.5.0"
},
"peerDependencies": {
"vitest": ">= 0.30"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
},
"type": "module",
"sideEffects": true,
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./configuration/*": "./configuration/*"
},
"bin": "./dist/cli.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"configuration"
],
"keywords": [
"build",
"rspack",
"create-react-app",
"test",
"lint",
"configuration"
],
"prettier": "padua/configuration/.prettierrc.json",
"eslintConfig": {
"extends": "./node_modules/padua/configuration/eslint.cjs"
},
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">= 18"
}
}