-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 KB
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
47
48
49
50
51
52
53
{
"name": "pomodoro-timer",
"version": "1.0.0",
"description": "A pomodoro Timer for group projects",
"main": "dist/main.min.js",
"type": "module",
"author": "LNSY <lindsey.mysse@gmail.com>",
"license": "Unlicense",
"keywords": [
"web-workers",
"custom-elements",
"vanilla-js",
"dataroom-js",
"rspack",
"boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/lnsy-dev/pomodoro-timer.git"
},
"bugs": {
"url": "https://github.com/lnsy-dev/pomodoro-timer/issues"
},
"homepage": "https://github.com/lnsy-dev/pomodoro-timer#readme",
"files": [
"dist/",
"src/",
"styles/",
"index.js",
"index.css",
"index.html"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rspack serve",
"build": "NODE_ENV=production rspack build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"dataroom-js": "^0.8.0"
},
"devDependencies": {
"@rspack/cli": "^1.5.6",
"@rspack/core": "^1.5.6",
"@rspack/dev-server": "^1.1.4",
"css-loader": "^7.1.2",
"cssnano": "^7.1.2",
"dotenv": "^17.2.2",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"style-loader": "^4.0.0"
}
}