-
-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "vuejs-challenges",
"description": "Collection of Vue.js challenges",
"keywords": ["Vue.js challenges", "Vue.js", "challenges", "Learn Vue.js"],
"license": "MIT",
"private":true,
"repository": {
"type": "git",
"url": "git+https://github.com/webfansplz/vuejs-challenges.git"
},
"author": "",
"main": "index.js",
"scripts": {
"test": "vitest --environment jsdom --ui",
"build": "tsx ./scripts/build.ts",
"docs:dev": "pnpm run -C docs update && pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"build:all": "pnpm run build && pnpm run docs:build",
"docs:serve": "pnpm run -C docs serve",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json --max-warnings 0",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.json"
},
"bugs": {
"url": "https://github.com/webfansplz/vuejs-challenges/issues"
},
"homepage": "https://github.com/webfansplz/vuejs-challenges#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^16.2.14",
"@types/node": "^18.0.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitest/ui": "^0.17.0",
"@vue/test-utils": "^2.0.2",
"@webfansplz/eslint-config": "^0.1.0",
"eslint": "^8.18.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"jsdom": "^20.0.0",
"pnpm": "7.3.0",
"tsx": "^3.6.0",
"typescript": "^4.7.4",
"vitest": "^0.17.0",
"vue": "^3.2.37"
},
"stackblitz": {
"startCommand": "npm run test"
}
}