-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "iso8601.date",
"version": "1.0.0",
"description": "iso8601 date",
"main": "index.js",
"repository": "git@github.com:mlc/iso8601.date.git",
"author": "mike castleman <m@mlcastle.net>",
"license": "UNLICENSED",
"scripts": {
"postinstall": "patch-package",
"start": "webpack-dev-server --mode development --open",
"dev": "webpack --mode development",
"prod": "webpack --mode production",
"pretty": "prettier --write src/*.js",
"lint": "eslint --ext .ts,.js src",
"lint:fix": "eslint --fix .ts,.js src",
"check-types": "tsc",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/plugin-transform-runtime": "7.25.7",
"@babel/preset-env": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@types/floreal": "1.1.3",
"@types/navigator-languages-parser": "0.10.2",
"@types/node": "18.19.54",
"@types/webpack": "5.28.5",
"@types/webpack-env": "1.18.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"babel-loader": "9.2.1",
"browserslist": "4.24.0",
"css-loader": "7.1.2",
"cssnano": "6.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-compat": "4.2.0",
"eslint-plugin-import": "2.31.0",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"mini-css-extract-plugin": "2.9.1",
"patch-package": "8.0.0",
"postcss": "8.4.47",
"postcss-loader": "8.1.1",
"postinstall-postinstall": "2.1.0",
"prettier": "3.3.3",
"style-loader": "3.3.4",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-pwa-manifest": "4.3.0",
"workbox-webpack-plugin": "7.1.0"
},
"dependencies": {
"@babel/runtime": "7.25.7",
"@js-joda/core": "5.6.3",
"@js-joda/timezone": "2.21.1",
"floreal": "1.1.1",
"navigator-languages-parser": "0.10.13"
},
"lint-staged": {
"*.{js,ts,css,md,json}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --ext .js,.ts"
]
},
"browserslist": [
"cover 95% in US, not dead, not ie 11"
]
}