-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
112 lines (112 loc) · 4.26 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
{
"private": true,
"name": "preact-limeapp",
"version": "0.2.26",
"description": "Limeapp webUI and app",
"license": "GNU",
"author": "Marcos Gutierrez <[email protected]>",
"scripts": {
"start": "per-env",
"start:production": "npm run -s serve",
"start:development": "npm run -s dev",
"build": "preact build --no-prerender",
"prebuild:production": "lingui extract; lingui compile",
"build:production": "preact build --no-prerender --no-sw --no-esm && rm build/*.map",
"serve": "preact build && serve build --single",
"dev": "preact watch",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx && prettier --ignore-path .gitignore --check \"**/*.+(js|jsx|ts|tsx|json|css|sass|less)\"",
"lint:fix": "tsc && eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json|css|sass|less)\"",
"translations:extract": "lingui extract --clean",
"translations:compile": "lingui compile",
"cz": "git-cz",
"release": "standard-version",
"storybook": "start-storybook -h 0.0.0.0 -p 8081",
"storybook:build": "build-storybook -c .storybook",
"storybook:deploy": "gh-pages -d storybook-static",
"test": "jest",
"clear-jest": "jest --clearCache",
"create-plugin": "node ./devTools/plugins create",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/cli": "^3.14.0",
"@lingui/detect-locale": "^3.14.0",
"@lingui/loader": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-controls": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/preact": "^6.5.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/preact": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^29.2.4",
"@types/leaflet": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-jest": "^29.5.0",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-preset-preact": "^2.0.0",
"dotenv": "^16.0.2",
"eslint": "^8.24.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.7.0",
"fetch-mock": "^9.11.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-extended": "^3.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.22",
"jest-preset-preact": "^4.0.5",
"less": "^4.1.3",
"less-loader": "^7.3.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.21",
"postcss-less": "^6.0.0",
"preact-cli": "^3.4.1",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"storybook": "^6.5.12",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.4",
"wait-for-expect": "^3.0.2",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@tanstack/react-query": "^4.6.0",
"@tanstack/react-query-devtools": "^4.6.0",
"compressorjs": "^1.1.1",
"history": "^5.3.0",
"leaflet": "^1.9.3",
"preact": "^10.11.0",
"preact-i18nline": "^2.0.0",
"preact-router": "^4.1.0",
"react-hook-form": "^7.36.1",
"react-leaflet": "^4.2.1",
"react-redux": "^8.0.4",
"react-router-redux": "^4.0.8",
"react-use": "^17.4.0",
"redux": "^4.2.0",
"redux-observable": "^2.0.0",
"simple-color-scale": "^1.0.1",
"timeago.js": "^4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": "eslint . --ext .js,.ts --fix",
"*.{js,ts,css,less}": "prettier --write"
}
}