-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
47
48
49
{
"name": "the-last-of-us-fan-website",
"version": "1.0.0",
"description": "A website as a tribute to the fantastic game The Last of Us",
"main": "",
"scripts": {
"test": "npm run lint",
"dev": "gulp",
"dev:prod": "NODE_ENV=production gulp",
"build": "NODE_ENV=production gulp build",
"format": "prettier --write .",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint:js": "eslint \"src/**/*.js\"",
"lint": "npm run lint:css && npm run lint:js"
},
"repository": {
"type": "git",
"url": "https://github.com/Pustur/tlou-fan-website"
},
"bugs": {
"url": "https://github.com/Pustur/tlou-fan-website/issues"
},
"author": "Loris Bettazza <loris.bettazza@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-connect": "5.7.0",
"gulp-csso": "4.0.1",
"gulp-htmlmin": "5.0.1",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "3.0.0",
"gulp-terser": "2.1.0",
"postcss": "8.4.19",
"prettier": "2.7.1",
"sass": "1.56.1",
"stylelint": "14.15.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-standard-scss": "6.1.0"
}
}