-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
97 lines (97 loc) · 2.86 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
{
"private": true,
"name": "preact-limeapp",
"version": "0.2.20",
"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",
"build:production": "preact build --no-prerender --production --no-esm && rm build/*.map",
"serve": "preact build && serve build --single",
"dev": "preact watch",
"lint": "eslint src",
"translations": "i18nline export",
"posttranslations": "node ./i18n-diff.js",
"cz": "git-cz",
"release": "standard-version",
"storybook": "start-storybook",
"storybook:build": "build-storybook -c .storybook",
"storybook:deploy": "gh-pages -d storybook-static",
"test": "jest",
"create-plugin": "node ./devTools/plugins create"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@storybook/addon-actions": "6.1.0",
"@storybook/addon-essentials": "6.1.0",
"@storybook/addon-knobs": "6.1.0",
"@storybook/preact": "6.1.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/preact": "^2.0.0",
"colors": "^1.4.0",
"commitizen": "^4.0.0",
"commitlint": "^8.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^2.0.0",
"eslint": "^6.0.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-synacor": "^3.0.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-react-hooks": "^4.0.5",
"eslint-plugin-testing-library": "^3.1.4",
"fetch-mock": "^8.3.2",
"gh-pages": "^2.0.1",
"husky": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"if-env": "^1.0.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.5",
"jest-fetch-mock": "^3.0.3",
"jest-preset-preact": "^1.0.0",
"jest-when": "^2.7.2",
"per-env": "^1.0.2",
"serve": "^11.1.0",
"standard-version": "^8.0.1",
"wait-for-expect": "^3.0.2",
"xhr-mock": "^2.5.1",
"yargs": "^16.2.0"
},
"dependencies": {
"history": "4.7.2",
"i18n-js": "3.0.3",
"leaflet.gridlayer.googlemutant": "0.13.4",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"preact": "10.5.7",
"preact-cli": "3.0.0",
"preact-i18nline": "2.0.0",
"preact-router": "3.2.1",
"react-hook-form": "6.9.2",
"react-query": "2.23.1",
"react-query-devtools": "2.6.0",
"react-redux": "7.1.3",
"react-router-redux": "4.0.8",
"react-use": "15.3.4",
"redux": "4.0.0",
"redux-observable": "1.2.0",
"rxjs": "6.5.4",
"simple-color-scale": "1.0.1",
"skeleton-less": "2.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}