-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "vue-demo",
"version": "1.0.0",
"description": "vue 3 demo",
"main": "index.js",
"repository": "git@github.com:Swedish-li/vue-demo.git",
"author": "Swedish-li <one.piece.li.2016@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build --base=/vue-demo",
"format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
"e2e:open": "cypress open --config baseUrl=http://localhost:3000",
"test:e2e:run": "cypress run --config baseUrl=http://localhost:3000",
"e2e:run:chrome": "cypress run --browser chrome --config baseUrl=http://localhost:3000",
"e2e:run:firefox": "cypress run --browser firefox --config baseUrl=http://localhost:3000",
"ci-e2e-run": "node ./cypress/start.js",
"ci-e2e-test": "yarn build & yarn ci-e2e-run"
},
"devDependencies": {
"@types/animejs": "^3.1.4",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.9",
"@vue/compiler-sfc": "3.2.33",
"cypress": "^9.5.3",
"koa": "^2.13.4",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"prettier": "^2.2.1",
"sass": "^1.49.7",
"typescript": "^4.5.5",
"vite": "^2.9.13"
},
"dependencies": {
"animejs": "^3.2.1",
"vue": "3.2.33",
"vue-router": "^4.0.14"
}
}