-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "template-frontend-phaser3",
"private": true,
"version": "0.0.4",
"type": "module",
"scripts": {
"dev": "node vite-dev.js",
"dev:host": "vite --host",
"build": "vite build",
"build:gh-pages": "cross-env DEPLOY_ENV=gh-pages vite build",
"preview": "npm run build && vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"gh-deploy": "npm run build:gh-pages && gh-pages -d dist"
},
"devDependencies": {
"@new-objects/eslint-config": "^0.0.3",
"@new-objects/prettier-config": "^0.0.2",
"autoprefixer": "^10.4.20",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"gh-pages": "^6.3.0",
"husky": "^8.0.0",
"postcss": "^8.5.1",
"qrcode": "^1.5.4",
"tailwindcss": "^3.4.17",
"tunnelmole": "^2.3.1",
"vite": "^5.4.11",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"phaser": "^3.87.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/new-objects/template-frontend-phaser3.git"
},
"bugs": {
"url": "https://github.com/new-objects/template-frontend-phaser3/issues"
}
}