-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
70 lines (70 loc) · 2.02 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
{
"name": "nearbeach",
"version": "0.31",
"description": "NearBeach - an Open Source project management system built with Django web framework",
"main": "/src/js/app.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.watch.js",
"e2e": "npx playwright test",
"e2e-report": "npx playwright show-report",
"e2e-ui": "npx playwright test --ui",
"unit-test": "npx vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NearBeach/NearBeach.git"
},
"keywords": [
"Django",
"open source",
"project management"
],
"author": "Luke Christopher Clarke",
"license": "MIT",
"bugs": {
"url": "https://github.com/robotichead/NearBeach/issues"
},
"homepage": "https://github.com/robotichead/NearBeach#readme",
"devDependencies": {
"@playwright/test": "^1.37.1",
"@popperjs/core": "^2.11.0",
"@tinymce/tinymce-vue": "^6.1.0",
"@vitejs/plugin-vue": "^4.3.3",
"@vitest/coverage-istanbul": "^0.34.3",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.3",
"@vue/compiler-sfc": "^3.2.26",
"@vue/test-utils": "^2.4.4",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "^1.7.4",
"bootstrap": "^5.3.3",
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"jsdom": "^22.1.0",
"luxon": "^2.5.2",
"mini-css-extract-plugin": "^2.4.5",
"naive-ui": "^2.23.2",
"postcss-loader": "^7.2.4",
"prettier": "2.8.4",
"sass": "^1.45.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"vitest": "^0.32.4",
"vue": "^3.4.19",
"vue-loader": "^17.4.2",
"vuedraggable": "^4.1.0",
"vuex": "^4.1.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}