-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
58
59
60
61
62
{
"name": "todomvc-vue-composition-api",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/todomvc-vue-composition-api.git"
},
"scripts": {
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --recursive 'src/**/*.spec.js'",
"test:e2e": "vue-cli-service test:e2e --headless",
"lint": "vue-cli-service lint --no-fix",
"format": "prettier --write 'src/**/*.{js,vue}'",
"report": "vue-cli-service build --report",
"start": "vue-cli-service serve",
"test": "npm run test:unit && npm run test:e2e",
"vite": "vite",
"vite:build": "vite build"
},
"dependencies": {
"core-js": "^3.22.0",
"todomvc-app-css": "^2.4.2",
"uuid": "^8.3.2",
"vue": "^3.2.33",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/cli-plugin-babel": "^5.0.4",
"@vue/cli-plugin-e2e-cypress": "^5.0.4",
"@vue/cli-plugin-eslint": "^5.0.4",
"@vue/cli-plugin-unit-mocha": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "2.0.0-rc.20",
"chai": "^4.3.6",
"cypress": "^9.5.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.6.0",
"prettier": "^2.6.2",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"vite": "^2.9.5",
"vue-loader": "^17.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version"
],
"engines": {
"node": "14.15.3"
}
}