-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (35 loc) · 1.08 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
{
"name": "testing-vuenuxt-playground",
"version": "1.0.0",
"description": "> 🕺 Code to show how we can easily add unit test into our Vue and Nuxt project",
"main": "index.js",
"scripts": {
"dev:nuxt2": "pnpm run dev --filter nuxt2",
"dev:vue2": "pnpm run dev --filter vue2",
"dev:vue3": "pnpm run dev --filter vue3",
"test:nuxt2": "pnpm run test --filter nuxt2",
"test:vue2": "pnpm run test --filter vue2",
"test:vue3": "pnpm run test --filter vue3",
"test:all": "pnpm run test:nuxt2 && pnpm run test:vue2 && pnpm run test:vue3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/testing-vuenuxt-playground.git"
},
"keywords": [
"vue-testing",
"nuxt-testing"
],
"author": "Irfan Maulana",
"license": "MIT",
"bugs": {
"url": "https://github.com/mazipan/testing-vuenuxt-playground/issues"
},
"homepage": "https://github.com/mazipan/testing-vuenuxt-playground#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^10.2.5",
"postcss": "^8.2.14",
"tailwindcss": "^2.1.2"
}
}