-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 806 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 806 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
32
33
{
"name": "webpack-timetracker",
"version": "1.0.7",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "webpack-dev-server",
"start:ts": "tsc --watch",
"build": "tsc --outDir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.1",
"csv-parse": "^5.2.2",
"moment": "^2.29.4",
"pad": "^2.1.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@types/node": "^8.0.52",
"@types/webpack": "3.8.1",
"babel-loader": "8.0.0-beta.0",
"better-log": "1.3.3",
"typescript": "^3.9.10",
"webpack": "5.73.0",
"webpack-dev-server": "4.9.3"
}
}