-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 878 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
{
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"postinstall": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/stream": "^3.0.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.49.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^9.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"rollup": "^2.79.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.(js|cjs|mjs)": "eslint --fix",
"*.(html|hbs|json|yml|css)": "prettier --write"
}
}