-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "nuxt-example-app",
"displayName": "Nuxt v3 Example App",
"version": "1.2.0",
"description": "This is an app primarily to showcase my skills with Nuxt, and other web orientated implementations.",
"keywords": [
"javascript",
"vue",
"nuxt",
"demo",
"example"
],
"author": {
"name": "Christopher Hatton (ckhatton)",
"email": "[email protected]",
"url": "https://ckhatton.com/"
},
"homepage": "https://nuxt.ckhatton.com",
"repository": {
"type": "git",
"url": "https://github.com/ckhatton/nuxt-example-app"
},
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nuxt/eslint": "^0.7.4",
"@nuxtjs/tailwindcss": "^6.12.2",
"@types/jest": "^29.5.14",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^8.57.1",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"nuxt": "^3.15.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}