-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "gaming-engine-core",
"version": "1.0.0",
"description": "Core functionality for the Gaming Engine",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot --https",
"prod": "npm run production",
"production": "mix --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaming-engine/core.git"
},
"keywords": [
"gaming-engine"
],
"author": "Andrew Judd",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaming-engine/core/issues"
},
"homepage": "https://github.com/gaming-engine/core#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@vue/test-utils": "^2.0.0-rc.13",
"autoprefixer": "^10.3.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.12.1",
"husky": "^7.0.0",
"laravel-mix": "^6.0.6",
"lint-staged": "^11.0.0",
"lodash": "^4.17.19",
"moment": "^2.10.6",
"moment-timezone": "^0.5.21",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"prettier-eslint-cli": "^5.0.1",
"tailwindcss": "^2.2.7",
"vue-loader": "^16.5.0",
"vue3-jest": "^27.0.0-alpha.1"
},
"dependencies": {
"axios": "^0.21.1",
"vue": "^3.2.2"
}
}