-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1022 Bytes
/
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
{
"private": true,
"name": "dr2combos",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --cors --single",
"dev": "preact watch",
"lint": "eslint src",
"test": "jest"
},
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^3.4.0",
"eslint": "^8.11.0",
"eslint-config-preact": "^1.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-preset-preact": "^4.0.2",
"preact-cli": "^3.3.5",
"preact-render-spy": "^1.2.1",
"sirv-cli": "^2.0.2"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash.orderby": "^4.6.0",
"preact": "^10.6.6",
"preact-render-to-string": "^5.1.20"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/setupTests.js"
],
"testMatch": [
"<rootDir>/tests/*.js"
]
}
}