-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "datekit",
"version": "1.0.0",
"author": "Rasel Developer",
"license": "MIT",
"main": "dist/datekit.min.js",
"module": "dist/datekit.min.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "nodemon",
"test": "jest --watch",
"build": "rm -rf dist && webpack --mode=production",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.+(ts|js)\""
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}