-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "kb-trainer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "snowpack dev",
"build": "snowpack build",
"test": "jest",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss,md}\"",
"lint": "prettier --check \"src/**/*.{json,js,jsx,ts,tsx,css,scss,md}\"",
"serve": "sirv build --port 3000 --cors --single",
"pot": "node ./i18n/extract.js",
"po2json": "node ./i18n/convert.js",
"serve-docs": "sirv docs --port 3000 --cors --single"
},
"dependencies": {
"chart.js": "^2.9.4",
"clsx": "^1.1.1",
"dexie": "^3.0.2",
"intro.js": "^3.0.1",
"js-logger": "^1.6.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"preact": "^10.5.2",
"preact-router": "^3.2.1"
},
"devDependencies": {
"@snowpack/app-scripts-preact": "^1.8.8",
"@snowpack/plugin-webpack": "^2.0.12",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/preact": "^2.0.0",
"@types/chart.js": "^2.9.27",
"@types/enzyme": "^3.10.7",
"@types/intro.js": "^2.4.7",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.163",
"@types/luxon": "^1.25.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.3",
"gettext-extractor": "^3.5.3",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"node-sass": "^4.14.1",
"po2json": "^0.4.5",
"prettier": "^2.1.2",
"sirv-cli": "^1.0.6",
"snowpack": "^2.11.1",
"snowpack-plugin-sass": "^1.0.0",
"typescript": "^4.0.3"
},
"browserslist": [
">0.75%",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,jsx,ts,tsx,css,scss,md}": "prettier --write"
}
}