-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.44 KB
/
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
{
"name": "corona-tracker",
"version": "1.3",
"description": "A Google Chrome extension for tracking CORONAVIRUS COVID-19 DATA",
"main": "src/manifest.js",
"repository": "https://github.com/mazik/corona-tracker",
"author": {
"name": "Md Mazedul Islam Khan",
"email": "mazedulislamkhan@gmail.com",
"url": "https://twitter.com/iamazik"
},
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "NODE_ENV=test jest",
"tdd": "NODE_ENV=test jest --watch --notify"
},
"devDependencies": {
"babel-jest": "^25.2.0",
"jest": "^25.1.0",
"laravel-mix": "^5.0.4",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.7.0",
"chartjs-plugin-doughnutlabel": "^2.0.3",
"tailwindcss": "^1.2.0",
"tailwindcss-animations": "^2.0.0"
}
}