-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "productivity-booster-extension",
"version": "0.5.1",
"description": "Block unproductive sites and become more disciplined on the internet!",
"keywords": [
"productivity",
"Pomodoro-technique",
"atomic habits"
],
"author": "Elias Ladenburger",
"private": true,
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/chrome": "^0.0.239",
"@types/jest": "^29.5.3",
"eslint": "^8.7.0",
"jest": "^29.6.1",
"jest-webextension-mock": "^3.8.9",
"prettier": "^2.5.1",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"tsc": "tsc --project config/tsconfig.json",
"wp": "webpack --config config/webpack.config.js",
"tailwind": "tailwindcss -i config/input.css -o prod-extension/assets/css/main.css -c config/tailwind.config.js",
"build": "npm run wp && npm run tailwind",
"wp-watch": "npm run wp --watch",
"wp-server": "npm run wp serve --open",
"test": "jest --config=config/jest.config.js"
},
"dependencies": {
"jquery": "^3.7.0",
"ts-loader": "^9.4.4"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}