-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.25 KB
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
{
"name": "datedreamer",
"version": "0.6.0",
"main": "dist/datedreamer.js",
"repository": "git@github.com:DateDreamer/DateDreamer.git",
"homepage": "https://datedreamer.github.io/docs/",
"contributors": [
{
"name": "Jorge Felico",
"url": "https://github.com/jorgefelico"
}
],
"scripts": {
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack --config webpack.prod.config.js",
"release": "release-it --ci",
"commit": "cz",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"analyze": "node scripts/analyze-bundle.js"
},
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@release-it/conventional-changelog": "^12.0.2",
"@testing-library/dom": "^10.4.2",
"@testing-library/jest-dom": "^7.0.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"@typescript/native": "npm:typescript",
"commitizen": "^4.3.2",
"css-loader": "^7.1.5",
"cz-conventional-changelog": "^3.3.0",
"dayjs": "^1.11.23",
"esbuild-loader": "^4.5.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"html-webpack-plugin": "^5.6.8",
"husky": "^9.1.7",
"jest": "^30.5.1",
"jest-environment-jsdom": "^30.5.1",
"lint-staged": "^17.5.1",
"lodash": "^4.18.1",
"npm-check-updates": "^23.1.0",
"prettier": "^3.9.6",
"release-it": "^21.0.3",
"sass": "^1.104.1",
"sass-loader": "^17.0.1",
"sockjs": "0.3.24",
"style-loader": "^4.0.0",
"tmp": "^0.2.7",
"ts-jest": "^29.4.12",
"ts-loader": "^9.6.2",
"typescript": "npm:@typescript/typescript6",
"undici": "^8.10.2",
"uuid": "^14.0.2",
"webpack": "^5.111.0",
"webpack-cli": "^7.2.3",
"webpack-dev-server": "6.0.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}