-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"private": true,
"name": "syn3h-interface",
"version": "0.0.0",
"license": "GPLv3",
"scripts": {
"build": "preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"test": "jest ./tests"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"@tailwindcss/forms": "^0.2.1",
"firebase": "^8.3.1",
"i18nline": "^2.0.1",
"node-sass": "^5.0.0",
"preact": "^10.3.1",
"preact-custom-scrollbars": "^4.0.4",
"preact-i18nline": "^2.0.0",
"preact-router": "^3.2.1",
"preact-virtual-list": "^0.3.1",
"redux-zero": "^5.1.7"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.3",
"@types/enzyme": "^3.10.5",
"@types/jest": "^26.0.8",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"autoprefixer": "^9.8.6",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.2.2",
"jest-preset-preact": "^4.0.2",
"postcss": "^7.0.35",
"preact-cli": "^3.0.0",
"preact-cli-postcss": "^1.1.1",
"prettier": "^1.19.1",
"purgecss-webpack-plugin": "^1.6.0",
"sirv-cli": "^1.0.0-next.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.ts",
"<rootDir>/tests/__mocks__/setupTests.ts"
]
}
}