-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "preact-island-starter",
"version": "1.0.0",
"description": "No configuration starter project for Preact Island",
"license": "MIT",
"author": "Marcus Wood",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --env prod",
"codegen": "npx playwright codegen",
"dev": "webpack serve --env dev",
"test": "npx playwright test",
"test-headed": "npx playwright test --headed",
"test-headed-slow": "SLOW=true npx playwright test --headed",
"tsc": "tsc --noEmit -p tsconfig.app.json",
"prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier-fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@preact/preset-vite": "^2.3.0",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/dynamic": "^2.0.2",
"@vanilla-extract/recipes": "^0.2.5",
"@vanilla-extract/sprinkles": "^1.4.1",
"clsx": "^1.2.1",
"polished": "^4.2.2",
"preact": "^10.5.7",
"preact-island": "^1.1.0",
"preact-render-to-string": "^5.1.12",
"redaxios": "^0.4.1"
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.25.1",
"@types/webpack": "^5.28.0",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/webpack-plugin": "^2.1.11",
"babel-loader": "^8.2.5",
"brotli-size": "^4.0.0",
"css-loader": "^6.7.1",
"dotenv": "^10.0.0",
"glob": "^8.0.3",
"gzip-size": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"kleur": "^4.1.5",
"prettier": "^2.6.2",
"pretty-bytes": "^5.0.0",
"style-loader": "^3.3.1",
"ts-node": "~10.8.0",
"typescript": "^4.6.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}