generated from sonicoder86/vue-3-playground
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "vue-3-playground",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/vue-3-playground.git"
},
"scripts": {
"start": "vite",
"serve": "vite",
"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": "jest --config=jest.unit.config.js src/javascript",
"test:unit:typescript": "jest --config=jest.unit.config.js src/typescript",
"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.1.3",
"vue-router": "^4.0.10",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@types/jest": "^26.0.23",
"@vitejs/plugin-vue": "^1.2.4",
"@vitejs/plugin-vue-jsx": "^1.1.6",
"@vue/compiler-sfc": "3.1.3",
"@vue/test-utils": "2.0.0-rc.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"cypress": "^7.6.0",
"jest": "^26.6.3",
"start-server-and-test": "^1.12.5",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5",
"vite": "^2.3.8",
"vue-jest": "^5.0.0-alpha.10"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"engines": {
"node": "14"
}
}