-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "infinity",
"version": "1.0.0",
"description": "Infinity 2d20 system implementation for FoundryVTT",
"repository": "https://github.com/Mezryss/FVTT-Infinity",
"author": "Mezryss",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build:data": "gulp",
"build": "vue-tsc && yarn build:data && vite build",
"dev": "concurrently \"gulp watch\" \"vite\"",
"watch:data": "gulp watch",
"lint:eslint": "eslint src --ext .vue,.js,.ts",
"lint:prettier": "prettier --editorconfig --check src/ types/",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:fix": "yarn lint:eslint --fix && prettier --editorconfig --write src/ types/",
"release": "yarn build && gulp zip"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/custom-forms": "^0.2.1",
"@types/gulp": "^4.0.10",
"@types/handlebars": "^4.1.0",
"@types/jquery": "^3.5.16",
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.2.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.11.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-yaml": "^2.0.4",
"gulp-zip": "^5.1.0",
"handlebars": "^4.7.7",
"pinia": "^2.1.3",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"socket.io": "^4.6.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vue": "^3.3.4",
"vue-debounce": "^4.0.0",
"vue-tsc": "^1.6.1"
}
}