-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "vue-3-playground",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/vue-3-playground.git"
},
"type": "module",
"scripts": {
"start": "vite --port 3000",
"serve": "vite --port 3000",
"build": "vite build",
"test": "npm run test:unit:javascript && npm run test:unit:typescript && npm run test:e2e:javascript && npm run test:e2e:typescript",
"test:unit:javascript": "vitest --dir src/javascript --run",
"test:unit:typescript": "vitest --dir src/typescript --run",
"test:e2e:javascript": "start-server-and-test start http-get://localhost:3000 e2e:javascript",
"test:e2e:typescript": "start-server-and-test start http-get://localhost:3000 e2e:typescript",
"e2e:javascript": "cypress run --config-file cypress-javascript.json",
"e2e:typescript": "cypress run --config-file cypress-typescript.json"
},
"dependencies": {
"vue": "^3.4.19",
"vue-router": "^4.3.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.4.19",
"@vue/test-utils": "^2.4.4",
"cypress": "^13.6.6",
"jsdom": "^24.0.0",
"start-server-and-test": "^2.0.3",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"engines": {
"node": "20"
}
}