-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "pomodoro-app",
"version": "1.0.0",
"description": "A scss/js Pomodoro app!",
"main": "index.js",
"scripts": {
"build:css": "tailwindcss build src/styles/styles.css -o src/styles/main.css",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack",
"deploy": "npm run build && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francoromanol/pomodoro-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/francoromanol/pomodoro-app/issues"
},
"homepage": "https://github.com/francoromanol/pomodoro-app#readme",
"dependencies": {
"autoprefixer": "^10.2.4",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^2.0.3"
},
"devDependencies": {
"css-loader": "^5.2.6",
"gh-pages": "^3.2.3",
"style-loader": "^3.0.0",
"tailwindcss-owl": "^2.0.0",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}