-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 916 Bytes
/
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
{
"name": "leetcode-time-tracker",
"version": "1.0.0",
"description": "LeetCode TimeTracker Extension",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VarthanV/LeetCode-Time-Tracker"
},
"dependencies": {
"@types/node": "^14.0.14",
"chart.js": "^2.9.4",
"moment": "~2.29.4"
},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"copy-webpack-plugin": "^5.1.1",
"jest": "^25.1.0",
"rimraf": "^3.0.2 ",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"typescript": "~3.8.3 ",
"webpack": "~4.42.0",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}