-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "frontend-tools",
"version": "1.0.0",
"description": "Demo of some frontend tooling",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"frontend",
"gulp",
"sass",
"imagemin",
"babel",
"eslint"
],
"author": "Yannick Lyn Fatt",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.8",
"@eslint/js": "^9.21.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^16.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-connect": "^5.7.0",
"gulp-imagemin": "^9.1.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^6.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"sass": "^1.85.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"gulp-eslint": "^6.0.0"
}
}