-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ag-website-vue",
"version": "2024.08.0",
"private": true,
"scripts_comments": {
"lint": "Run linters, e.g., eslint and prettier.",
"build": [
"Compile the Vue application (includes type checking). ",
"Used for type checking in development and for building the application for production."
],
"test": "Run unit tests.",
"e2e:serve": "Run the e2e stack in the foreground.",
"e2e:served": "Run the e2e stack in the background.",
"e2e": "Run the e2e tests. Use e2e:serve or e2e:served to start the e2e stack first.",
"e2e:once": [
"Starts the e2e stack, runs the e2e tests, and stops the e2e stack.",
"Mainly used on CI."
],
"serve": "Starts the Vue dev server. Used by the 'website' dev Dockerfile."
},
"scripts": {
"lint": "./static_analysis.bash",
"build": "vue-cli-service build",
"test": "python3 run_tests.py",
"e2e:serve": "docker compose -f e2e_test_stack/docker-compose.yml up",
"e2e:served": "npm run e2e:serve -- -d",
"e2e": "playwright test",
"e2e:once": "start-server-and-test e2e:serve http://localhost:8080 e2e",
"serve": "vue-cli-service serve"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@types/minimatch": "^3.0.5",
"ag-client-typescript": "2.8.0",
"chart.js": "^3.9.1",
"chartjs-adapter-moment": "^1.0.1",
"chartjs-plugin-zoom": "^1.2.1",
"dompurify": "^3.1.6",
"file-saver": "^2.0.5",
"highlight.js": "^11.9.0",
"lodash": "^4.17.21",
"minimatch": "^3.1.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"showdown": "^2.1.0",
"vue": "^2.7.16",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^8.5.1",
"vue-router": "^3.6.5",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@testing-library/jest-dom": "^5.11.9",
"@types/dompurify": "^3.0.5",
"@types/file-saver": "^2.0.1",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.168",
"@types/node": "^22.7.9",
"@types/showdown": "^2.0.6",
"@types/sinon": "^7.5.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-vue2": "^1.1.2",
"@vue/cli-plugin-typescript": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/test-utils": "^1.3.0",
"cache-loader": "^4.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.20.0",
"jsdom": "^20.0.0",
"playwright": "^1.48.1",
"prettier": "3.3.3",
"sass": "^1.66.1",
"sass-loader": "^10.1.1",
"sinon": "^19.0.2",
"start-server-and-test": "^2.0.8",
"terser": "^5.14.2",
"timezone-mock": "^1.1.3",
"typescript": "^3.9.9",
"uuid": "^10.0.0",
"vitest": "^2.1.3",
"vue-template-compiler": "^2.7.16",
"vue-tsc": "^0.38.8",
"webpack": "4.45.0"
}
}