-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 874 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 874 Bytes
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
{
"name": "pcgen-js",
"version": "1.0.0",
"description": "pcgen javascript vue project",
"author": "LegacyKing",
"private": true,
"scripts": {
"dev": "nuxt --hostname 0.0.0.0 --port 3333",
"build": "nuxt build",
"start": "nuxt start --hostname 0.0.0.0 --port 3333",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"nuxt": "^3.19.0",
"bootstrap-vue": "^2.0.0",
"bootstrap": "^5.0.0",
"@nuxtjs/axios": "^5.13.6"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-module": "^1.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^9.39.2",
"eslint-plugin-nuxt": ">=4.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"jest": "^29.5.0",
"vue-jest": "^4.0.0-beta.2"
}
}