-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@upstatement/puppy-template",
"version": "2.0.0",
"private": true,
"description": "Starter kit and delivery system for building static prototypes with Twig",
"repository": {
"type": "git",
"url": "git+https://github.com/Upstatement/puppy.git"
},
"author": "Upstatement Tech <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Upstatement/puppy/issues"
},
"homepage": "https://github.com/Upstatement/puppy#readme",
"engines": {
"node": "18.16.0"
},
"scripts": {
"build:dev": "gulp build",
"build": "NODE_ENV=production gulp build",
"clean": "gulp clean",
"start": "gulp",
"test": "ava --timeout=30s",
"lint": "npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:fix-js && npm run lint:fix-scss",
"lint:js": "eslint ./src/js/**/*",
"lint:fix-js": "npm run lint:js -- --fix",
"lint:scss": "stylelint ./src/scss/**/*",
"lint:fix-scss": "npm run lint:scss -- --fix",
"format": "prettier --write src/**/*",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
],
"*.scss": [
"stylelint --fix"
]
},
"dependencies": {
"@upstatement/puppy": "^0.13.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.0",
"@upstatement/eslint-config": "^2.0.0",
"@upstatement/prettier-config": "^1.0.0",
"autoprefixer": "^10.4.14",
"ava": "^5.3.0",
"babel-loader": "^9.1.2",
"browser-sync": "^2.9.9",
"bs-fullscreen-message": "^1.1.0",
"css-loader": "^6.7.4",
"del": "^6.1.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.3.0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-load-plugins": "^2.0.2",
"gulp-twig": "^1.1.1",
"gulplog": "^1.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash.groupby": "^4.6.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.1",
"prettier": "^2.2.1",
"sass": "^1.24.3",
"sass-loader": "^13.3.0",
"stylelint": "^15.6.2",
"stylelint-config-sass-guidelines": "^10.0.0",
"webpack": "^5.84.1",
"webpack-dev-middleware": "^6.1.1"
}
}