forked from AnimaBeyondDevelop/AnimaBeyondFoundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.46 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
{
"private": true,
"name": "anima-beyond-foundry",
"version": "1.19.2",
"description": "Unofficial Anima Beyond Fantasy system for Foundry VTT",
"scripts": {
"dev": "nodemon",
"build:dev": "npm run build:com && npm run copy:files && node scripts/copyDirectoryToFoundrySystem.js animabf",
"build:prod": "npm run compendia:pack && npm run build:com && npm run copy:files",
"build:com": "rimraf dist/ && npm run build:ts && npm run build:sass",
"build:ts": "tsc-esm -p .",
"build:sass": "sass src/scss/animabf.scss dist/animabf.css",
"copy:files": "cp src/template.json dist && cp -r src/lang dist && cp -r src/templates dist && cp -r src/assets dist && cp -r packs dist && cp src/system.json dist",
"clean": "rimraf dist/",
"release": "node scripts/release/release.js",
"release:dry": "node scripts/release/release.js --dry",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest src",
"hook:pre-commit": "lint-staged",
"cypress:open": "cd integration && cypress open",
"compendia:pack": "node scripts/compendia/packCompendia.mjs",
"compendia:unpack": "node scripts/compendia/unpackCompendia.mjs"
},
"engines": {
"node": ">18.0.0"
},
"author": "",
"license": "",
"devDependencies": {
"@digitak/tsc-esm": "^3.1.4",
"@foundryvtt/foundryvtt-cli": "^1.0.3",
"@types/faker": "^5.5.6",
"@types/handlebars": "^4.1.0",
"@types/jest": "^26.0.23",
"@types/jquery": "^3.5.16",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"archiver": "^5.3.0",
"chalk": "^4.1.0",
"cypress": "^7.5.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"faker": "^5.5.3",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.21",
"prettier": "^2.3.0",
"readline-sync": "^1.4.10",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-lint": "^1.13.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5",
"yargs": "^16.2.0"
},
"dependencies": {
"jquery": "^3.6.0"
},
"lint-staged": {
"src/**/*.ts": "eslint --fix --cache",
"src/**/*.{ts,tsx}": [
"bash -c \"tsc --noEmit --pretty\""
]
},
"sasslintConfig": "./.sass-lint.yml"
}