-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 1.91 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
{
"name": "preact-integrations",
"version": "0.0.1",
"description": "A collection of sample apps demonstrating Preact's compatibility with various 3rd party libraries",
"main": "index.js",
"scripts": {
"build": "node ./scripts build",
"dev": "node ./scripts dev",
"test": "jest",
"test:debug": "cross-env PPTR_DEBUG=true jest",
"serve": "node ./scripts serve",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"keywords": [
"preact",
"preact-compat"
],
"author": "",
"license": "MIT",
"dependencies": {
"classcat": "^5.0.4",
"classnames": "^2.3.2",
"preact": "^10.11.3",
"preact-router": "^4.1.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/jasmine": "^4.3.0",
"@types/jest": "^29.2.3",
"@types/jest-environment-puppeteer": "^5.0.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-puppeteer": "^6.1.1",
"lint-staged": "^13.0.4",
"mini-css-extract-plugin": "^2.7.0",
"postcss-loader": "^7.0.1",
"prettier": "^2.8.0",
"puppeteer": "^19.3.0",
"sade": "^1.8.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"serve": "^14.1.2",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 2
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --write"
]
},
"jest": {
"rootDir": "tests",
"preset": "jest-puppeteer",
"transform": {
"^.+\\.[t|j]sx?$": "<rootDir>/babelTransformer.js"
}
},
"volta": {
"node": "18.12.1"
}
}