-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 889 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
37
38
39
{
"name": "classic-calculator-app",
"version": "1.0.0",
"description": "Create a calculator with the help of TypeScript and SASS.",
"keywords": [
"calculator",
"nodejs-app"
],
"scripts": {
"gulp": "gulp",
"start": "gulp",
"build": "gulp build",
"watch": "gulp watch"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-minify-css": "^1.2.4",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2"
},
"dependencies": {
"bootstrap": "^5.3.2",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.3.0",
"gulp-postcss": "^9.0.1"
},
"engines": {
"node": "21.x"
}
}