-
Jenny Zhang authored
Initialised a Vue project with Vue CLI and added my pre-defined function for Rule Implementation and Validation in Javascript function. Every test works well.
Jenny Zhang authoredInitialised a Vue project with Vue CLI and added my pre-defined function for Rule Implementation and Validation in Javascript function. Every test works well.
This project manages its dependencies using npm.
Learn more
package.json 1.08 KiB
{
"name": "individual_project_vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "jest"
},
"dependencies": {
"core-js": "^3.8.3",
"nearley": "^2.20.1",
"vue": "^3.2.13"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/test-utils": "^2.4.6",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"jest": "^26.6.3",
"jest-serializer-vue": "^3.1.0",
"vue-jest": "^5.0.0-alpha.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}