forked from sw5e-foundry/sw5e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"type": "module",
"scripts": {
"build": "gulp buildAll",
"build:clean": "gulp clean",
"build:css": "gulp buildCSS",
"build:js": "gulp buildJS",
"build:static": "gulp copyStatic",
"build:db": "gulp compilePacks",
"build:json": "gulp extractPacks --levelDB",
"build:cleanJson": "gulp cleanPacks",
"build:watch": "gulp",
"lint": "gulp lint",
"lint:fix": "gulp lint --fix"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@foundryvtt/foundryvtt-cli": "^1.0.0-rc.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.3",
"del": "^7.0.0",
"eslint-plugin-jsdoc": "^39.6.7",
"fancy-log": "^2.0.0",
"fs": "^0.0.1-security",
"gulp": "^4.0.2",
"gulp-eslint7": "^0.3.1",
"gulp-if": "^3.0.0",
"gulp-less": "^5.0.0",
"merge-stream": "^2.0.0",
"nedb": "^1.8.0",
"path": "^0.12.7",
"rollup": "^3.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"through2": "^4.0.2",
"yargs": "^17.5.1"
},
"dependencies": {
"@yaireo/tagify": "4.16.4",
"minisearch": "^5.1.0",
"nouislider": "^15.7.1"
}
}