-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"my-crm": "concurrently \"npm run python\" \"npm run serve\"",
"serve": "cd ~/github/myCRM/frontend && vue-cli-service serve",
"python": "cd ~/github/myCRM/backend && python3 main.py",
"build": "vue-cli-service build",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "1.7.7",
"register-service-worker": "1.7.2",
"vue": "3.5.5",
"vue-router": "4.4.5"
},
"devDependencies": {
"@babel/cli": "7.25.6",
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@vue/cli-plugin-e2e-cypress": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-pwa": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"concurrently": "9.0.1",
"cypress": "13.14.2",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.28.0",
"prettier": "3.3.3",
"sass": "1.78.0",
"sass-loader": "16.0.1"
}
}