-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.97 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.97 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
{
"name": "datedreamer",
"version": "0.4.8",
"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": "^10.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"commitizen": "^4.3.1",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.0.11",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.4",
"lint-staged": "^16.1.2",
"prettier": "^3.2.5",
"release-it": "^19.0.3",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"dayjs": "^1.11.13"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}