-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "module-template-nuxt-2",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"author": "Aleksandr Saburov <[email protected]> (http://artmizu.ru/)",
"exports": {
".": {
"types": "./dist/module.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^16.0.0"
},
"scripts": {
"dev": "nodemon --exec 'pnpm build' --watch ./src -e js,ts",
"build": "pnpm unbuild",
"playground": "nodemon --exec 'nuxt ./playground' --watch ./dist -e js,ts",
"playground:build": "nuxt build ./playground",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"lint": "eslint --ext .ts,.js,.vue .",
"typecheck": "pnpm tsc",
"prepare": "husky install"
},
"peerDependencies": {
"@nuxt/types": "^2.15.8"
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"@babel/eslint-parser": "^7.19.1",
"@nuxt/test-utils": "0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^18.11.9",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.3",
"core-js": "^3.25.3",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.5.1",
"husky": "^8.0.2",
"jest": "26.6.3",
"jest-environment-jsdom": "^26.6.2",
"nodemon": "^2.0.20",
"nuxt": "^2.15.8",
"playwright": "^1.28.0",
"ts-jest": "^29.0.3",
"typescript": "4.7.4",
"unbuild": "^1.0.1",
"vue": "^2.7.10",
"vue-jest": "^3.0.4",
"vue-server-renderer": "^2.7.10",
"vue-template-compiler": "^2.7.10"
},
"resolutions": {
"typescript": "4.7.4"
}
}